diff options
| author | srdusr <trevorgray@srdusr.com> | 2022-10-29 13:45:08 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2022-10-29 13:45:08 +0200 |
| commit | 1c3506724b93b5914af223b0464b84f1c219399b (patch) | |
| tree | 701f5ca76f1ec12644b2bb66d9aa983634e98892 /lua/user/colorscheme.lua | |
| parent | 7f30d31c9142bbeb10a21b4de9f58bc6d3a0a3f1 (diff) | |
| download | dotfiles-1c3506724b93b5914af223b0464b84f1c219399b.tar.gz dotfiles-1c3506724b93b5914af223b0464b84f1c219399b.zip | |
Removed duplicate files
Diffstat (limited to 'lua/user/colorscheme.lua')
| -rw-r--r-- | lua/user/colorscheme.lua | 36 |
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", -}) |
