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 ]]
|
--[[ plugins list ]]
|
||||||
require('lazy').setup {
|
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'}},
|
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
|
||||||
|
'EdenEast/nightfox.nvim',
|
||||||
'smoka7/hop.nvim',
|
'smoka7/hop.nvim',
|
||||||
'kdheepak/lazygit.nvim',
|
'kdheepak/lazygit.nvim',
|
||||||
'nvim-telescope/telescope.nvim',
|
'nvim-telescope/telescope.nvim',
|
||||||
|
|
@ -24,10 +25,10 @@ require('lazy').setup {
|
||||||
--[[ plugin configs and maps ]]
|
--[[ plugin configs and maps ]]
|
||||||
require('hop').setup()
|
require('hop').setup()
|
||||||
require('gitsigns').setup()
|
require('gitsigns').setup()
|
||||||
require('gruvbox').setup {
|
-- require('gruvbox').setup {
|
||||||
italic = {strings = false},
|
-- italic = {strings = false},
|
||||||
terminal_colors = true
|
-- terminal_colors = true
|
||||||
}
|
-- }
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter.configs').setup {
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true
|
enable = true
|
||||||
|
|
@ -50,6 +51,6 @@ map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')
|
||||||
|
|
||||||
--[[ theme ]]
|
--[[ theme ]]
|
||||||
vim.o.termguicolors = true
|
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