diff options
Diffstat (limited to '.config/nvim/lua/plugins/colorscheme.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/colorscheme.lua | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/.config/nvim/lua/plugins/colorscheme.lua b/.config/nvim/lua/plugins/colorscheme.lua index 14edbdf..be78ac8 100644 --- a/.config/nvim/lua/plugins/colorscheme.lua +++ b/.config/nvim/lua/plugins/colorscheme.lua @@ -1,19 +1,3 @@ --- Colorscheme --- Available colorschemes: --- [[ nightfly ayu onedark doom-one nvimgelion github_dark tokyonight ]] - --- Define default color scheme -local default_colorscheme = "tokyonight-night" -local fallback_colorscheme = "desert" - --- Attempt to set the default color scheme -local status_ok, _ = pcall(vim.cmd, "colorscheme " .. default_colorscheme) - --- If the default color scheme is not found, use the fallback color scheme -if not status_ok then - vim.cmd("colorscheme " .. fallback_colorscheme) -end - --local function MyHighlights() -- vim.cmd('highlight Visual cterm=NONE ctermbg=76 ctermfg=16 gui=NONE guibg=#5fd700 guifg=#000000') -- vim.cmd('highlight StatusLine cterm=NONE ctermbg=231 ctermfg=160 gui=NONE guibg=#ffffff guifg=#d70000') @@ -30,20 +14,6 @@ end -- --setupMyColors() - -vim.api.nvim_command("syntax on") -vim.api.nvim_command("highlight Normal guibg=NONE") -vim.api.nvim_command("highlight NormalNC guibg=none") -vim.api.nvim_command("highlight SignColumn guibg=none") ---vim.api.nvim_command("highlight FoldColumn guibg=none") ---vim.api.nvim_command("highlight CursorLineSign guibg=none ctermbg=NONE") -vim.api.nvim_command("highlight TabLine guibg=#333842 gui=bold") -vim.api.nvim_command("highlight Title guibg=none gui=bold") -vim.api.nvim_command("highlight TabLineSel guibg=#333842 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 LineNr guibg=none") --vim.api.nvim_command("highlight FoldColumn guibg=none") --vim.api.nvim_command("highlight SignColumn guifg=none guibg=none cterm=NONE ctermfg=none ctermbg=NONE gui=NONE") @@ -52,20 +22,6 @@ vim.api.nvim_command("highlight LineNr guibg=none") --vim.api.nvim_command("highlight TabLineNC guibg=none gui=bold") --vim.api.nvim_command("highlight StatusLine guibg=#333842 gui=bold") --vim.api.nvim_command("highlight StatusLineNC guibg=none ctermfg=Cyan guifg=#80a0ff gui=bold") -vim.api.nvim_command("highlight WinSeparator guibg=none gui=bold") -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 EndOfBuffer guibg=NONE guifg=Normal") --- Set different window separator colorscheme -vim.cmd [[ -au WinEnter * setl winhl=WinSeparator:WinSeparatorA -au WinLeave * setl winhl=WinSeparator:WinSeparator -]] - -require("notify").setup({ - background_colour = "#000000", -}) -- Custom colorscheme --vim.cmd([[ |
