nvim: light theme
This commit is contained in:
parent
110523d872
commit
8b282f0aa6
1 changed files with 8 additions and 7 deletions
|
|
@ -7,8 +7,9 @@ vim.opt.rtp:prepend(lazypath)
|
|||
|
||||
--[[ plugins list ]]
|
||||
require('lazy').setup {
|
||||
{'ellisonleao/gruvbox.nvim', priority = 1000, config = true},
|
||||
-- {'ellisonleao/gruvbox.nvim', priority = 1000, config = true},
|
||||
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
|
||||
'EdenEast/nightfox.nvim',
|
||||
'smoka7/hop.nvim',
|
||||
'kdheepak/lazygit.nvim',
|
||||
'nvim-telescope/telescope.nvim',
|
||||
|
|
@ -24,10 +25,10 @@ require('lazy').setup {
|
|||
--[[ plugin configs and maps ]]
|
||||
require('hop').setup()
|
||||
require('gitsigns').setup()
|
||||
require('gruvbox').setup {
|
||||
italic = {strings = false},
|
||||
terminal_colors = true
|
||||
}
|
||||
-- require('gruvbox').setup {
|
||||
-- italic = {strings = false},
|
||||
-- terminal_colors = true
|
||||
-- }
|
||||
require('nvim-treesitter.configs').setup {
|
||||
highlight = {
|
||||
enable = true
|
||||
|
|
@ -50,6 +51,6 @@ map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')
|
|||
|
||||
--[[ theme ]]
|
||||
vim.o.termguicolors = true
|
||||
vim.o.bg = 'dark'
|
||||
vim.o.bg = 'light'
|
||||
|
||||
vim.cmd [[colorscheme gruvbox]]
|
||||
vim.cmd [[colorscheme dawnfox]]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue