update colorscheme to everforest

This commit is contained in:
juan 2022-03-26 11:12:30 +08:00
parent 9654a8c42b
commit 12fc94bde4
Signed by: juan
GPG Key ID: 5C1E5093C74F1DC7
2 changed files with 14 additions and 9 deletions

View File

@ -20,17 +20,22 @@ return require('packer').startup(function(use)
use {'wbthomason/packer.nvim', event = 'VimEnter'} use {'wbthomason/packer.nvim', event = 'VimEnter'}
-- core UI -- core UI
use {
'https://github.com/sainnhe/everforest',
after = 'packer.nvim',
config = function() vim.cmd("colorscheme everforest") end
}
use {'kyazdani42/nvim-web-devicons', after = 'packer.nvim'} use {'kyazdani42/nvim-web-devicons', after = 'packer.nvim'}
use { use {
'hoob3rt/lualine.nvim', 'hoob3rt/lualine.nvim',
after = {'nvim-web-devicons', 'nvim-base16'}, after = {'nvim-web-devicons'},
config = function() require "plugins.statusline" end config = function() require "plugins.statusline" end
} }
use { -- use {
'RRethy/nvim-base16', -- 'RRethy/nvim-base16',
after = 'packer.nvim', -- after = 'packer.nvim',
config = function() require "plugins.base16" end -- config = function() require "plugins.base16" end
} -- }
-- lsp stuff -- lsp stuff
use {'neovim/nvim-lspconfig', event = "BufEnter"} use {'neovim/nvim-lspconfig', event = "BufEnter"}
@ -82,7 +87,7 @@ return require('packer').startup(function(use)
use {"sbdchd/neoformat", cmd = "Neoformat"} use {"sbdchd/neoformat", cmd = "Neoformat"}
use { use {
"mattn/emmet-vim", "mattn/emmet-vim",
event = "FileType html,css,markdown", event = "FileType html,htmldjango,css,markdown",
setup = function() require "plugins.emmet" end setup = function() require "plugins.emmet" end
} }
use {"machakann/vim-sandwich", event = "VimEnter"} use {"machakann/vim-sandwich", event = "VimEnter"}
@ -138,7 +143,7 @@ return require('packer').startup(function(use)
} }
use { use {
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
after = {"nvim-treesitter", "nvim-base16"}, after = {"nvim-treesitter"},
config = function() require "plugins.indent-blankline" end config = function() require "plugins.indent-blankline" end
} }
use { use {

View File

@ -1,7 +1,7 @@
require'lualine'.setup { require'lualine'.setup {
options = { options = {
icons_enabled = true, icons_enabled = true,
theme = 'iceberg_dark', theme = 'everforest',
component_separators = {'|', '|'}, component_separators = {'|', '|'},
section_separators = {'', ''}, section_separators = {'', ''},
disabled_filetypes = {} disabled_filetypes = {}