aboutsummaryrefslogtreecommitdiff
path: root/lua/user/colorscheme.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2022-10-29 13:45:08 +0200
committersrdusr <trevorgray@srdusr.com>2022-10-29 13:45:08 +0200
commit1c3506724b93b5914af223b0464b84f1c219399b (patch)
tree701f5ca76f1ec12644b2bb66d9aa983634e98892 /lua/user/colorscheme.lua
parent7f30d31c9142bbeb10a21b4de9f58bc6d3a0a3f1 (diff)
downloaddotfiles-1c3506724b93b5914af223b0464b84f1c219399b.tar.gz
dotfiles-1c3506724b93b5914af223b0464b84f1c219399b.zip
Removed duplicate files
Diffstat (limited to 'lua/user/colorscheme.lua')
-rw-r--r--lua/user/colorscheme.lua36
1 files changed, 0 insertions, 36 deletions
diff --git a/lua/user/colorscheme.lua b/lua/user/colorscheme.lua
deleted file mode 100644
index e74d48c..0000000
--- a/lua/user/colorscheme.lua
+++ /dev/null
@@ -1,36 +0,0 @@
--- Colorscheme
--- ayu gruvbox molokai onedark srcery everblush vscode edge nightfly doom-one
-local colorscheme = "onedark"
-local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
-if not status_ok then
- vim.notify("colorscheme " .. colorscheme .. " not found!")
- return
-end
-
-vim.api.nvim_command("syntax on")
-vim.api.nvim_command("highlight Normal guibg=none")
-vim.api.nvim_command("highlight SignColumn guibg=none")
-
-vim.api.nvim_command("highlight TabLine guibg=#333842 gui=bold")
-vim.api.nvim_command("highlight TabLineSel guibg=#333842 gui=bold")
-
---vim.api.nvim_command("highlight TabLine guibg=none gui=bold")
---vim.api.nvim_command("highlight StatusLine guibg=#333842 gui=bold")
---vim.api.nvim_command("highlight StatusLine guibg=#333842 guifg=#d6d3ea gui=bold")
---vim.api.nvim_command("highlight StatusLine guibg=none gui=bold")
---vim.api.nvim_command("highlight TabLineNC guibg=none gui=bold")
---vim.api.nvim_command("highlight TabLineSel guibg=#bd93f9 gui=bold")
-vim.api.nvim_command("highlight Title guibg=none gui=bold")
-vim.api.nvim_command("highlight TabLineFill guibg=none gui=bold")
-vim.api.nvim_command("highlight WinBar guibg=none gui=bold")
-vim.api.nvim_command("highlight NormalFloat guibg=none")
-vim.api.nvim_command("highlight MsgSeparator guibg=none")
---vim.api.nvim_command("highlight PmenuSel guibg=none")
---vim.api.nvim_command("highlight winblend guibg=none")
---vim.api.nvim_command("highlight StatusLine guibg=none gui=bold")
---vim.api.nvim_command("highlight StatusLineNC guibg=none gui=bold")
---vim.api.nvim_command("highlight StatusLineNC guibg=none ctermfg=Cyan guifg=#80a0ff gui=bold")
-
-require("notify").setup({
- background_colour = "#000000",
-})