aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/colorscheme.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-09-06 23:37:40 +0200
committersrdusr <trevorgray@srdusr.com>2023-09-06 23:37:40 +0200
commit5820199baa9f572f4ae26d36a9bfaf8ae40fe3f1 (patch)
tree0a7a8c2b80dee9b0339b2164c35332196b8bd5e2 /lua/plugins/colorscheme.lua
parent77181e7da2bcf5f1907d06146c69379b5dabf1f6 (diff)
downloaddotfiles-5820199baa9f572f4ae26d36a9bfaf8ae40fe3f1.tar.gz
dotfiles-5820199baa9f572f4ae26d36a9bfaf8ae40fe3f1.zip
Moved colors to init.lua
Diffstat (limited to 'lua/plugins/colorscheme.lua')
-rw-r--r--lua/plugins/colorscheme.lua43
1 files changed, 0 insertions, 43 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
index 2e04581..be78ac8 100644
--- a/lua/plugins/colorscheme.lua
+++ b/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 = 'nightfly'
-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,19 +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")
@@ -51,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([[