Add zls, background color

This commit is contained in:
Tyler Hallada 2022-11-30 14:26:42 -05:00
parent fddba892f3
commit af83a14dc1
3 changed files with 8 additions and 1 deletions

View File

@ -312,6 +312,7 @@ return require('packer').startup(function(use)
require('plugins.rust-tools-nvim')
end,
}
use 'ziglang/zig.vim'
use {
'akinsho/bufferline.nvim',
tag = "v2.*",
@ -410,6 +411,7 @@ return require('packer').startup(function(use)
require('plugins.which-key-nvim')
end
}
use 'eandrju/cellular-automaton.nvim'
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins

View File

@ -13,7 +13,8 @@ require("gruvbox").setup({
dim_inactive = true,
transparent_mode = false,
palette_overrides = {
dark1 = '#282828',
dark0_hard = '#131516',
dark1 = '#242424',
},
overrides = {
Pmenu = { bg = '#222222'}

View File

@ -80,3 +80,7 @@ require('lspconfig')['taplo'].setup({
on_attach = on_attach,
flags = lsp_flags,
})
require('lspconfig')['zls'].setup({
on_attach = on_attach,
flags = lsp_flags,
})