diff options
author | Matthew Wozniak <me@woz.blue> | 2025-01-07 13:47:00 -0500 |
---|---|---|
committer | Matthew Wozniak <me@woz.blue> | 2025-01-07 13:47:00 -0500 |
commit | 444fad2662749ec6ab306fce7170bc0ea563f5c8 (patch) | |
tree | 8437f115a06ce5fb08345e6fb7323b64c8d103f0 /after/plugin | |
parent | a7f3bc8f5d8e7fbb3e6b631f9898de3e7d3bba7b (diff) | |
download | nvim-444fad2662749ec6ab306fce7170bc0ea563f5c8.tar.gz nvim-444fad2662749ec6ab306fce7170bc0ea563f5c8.zip |
monokai
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/cfg.vim | 2 | ||||
-rw-r--r-- | after/plugin/lsp.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim index 9d95463..70c95cc 100644 --- a/after/plugin/cfg.vim +++ b/after/plugin/cfg.vim @@ -3,4 +3,4 @@ set autoindent set sw=4 ts=4 noet tw=80 cc=80 set spr sb pb=12 winbl=12 nowrap ruler autoread set gfn=Hack:h10 noshowmode -colorscheme seoul256 +color monokai_pro diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua index 6eb1ebb..3f790d7 100644 --- a/after/plugin/lsp.lua +++ b/after/plugin/lsp.lua @@ -69,7 +69,7 @@ end local caps = vim.lsp.protocol.make_client_capabilities() caps = cmp_lsp.default_capabilities(caps) -local servers = {'clangd', 'rust_analyzer', 'zls', 'texlab'} +local servers = {'clangd', 'rust_analyzer', 'zls', 'texlab', 'biome'} for _, lsp in pairs(servers) do lspconfig[lsp].setup { capabilities = caps, |