summaryrefslogtreecommitdiff
path: root/lua/plugins
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <me@woz.blue> 2026-07-08 15:27:33 -0400
committerGravatar Matthew Wozniak <me@woz.blue> 2026-07-08 15:27:33 -0400
commitf4e02cd480bf44db1f947c0011f2177b908e9861 (patch)
tree63e8f0bdec5240b6499411505b66ef7fa280a6a5 /lua/plugins
parentc70759274ba4cd4532bba7a4ce7d61b01634df77 (diff)
downloadnvim-f4e02cd480bf44db1f947c0011f2177b908e9861.tar.gz
nvim-f4e02cd480bf44db1f947c0011f2177b908e9861.zip
colorscheme; zlsHEADmaster
Diffstat (limited to 'lua/plugins')
-rw-r--r--lua/plugins/gruvbox.lua13
-rw-r--r--lua/plugins/lspconfig.lua2
2 files changed, 2 insertions, 13 deletions
diff --git a/lua/plugins/gruvbox.lua b/lua/plugins/gruvbox.lua
deleted file mode 100644
index bb3a924..0000000
--- a/lua/plugins/gruvbox.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-return {
- "ellisonleao/gruvbox.nvim",
- priority = 1000,
- config = true,
- opts = {
- italic = {
- comments = false,
- strings = false,
- },
- contrast = "hard",
- transparent_mode = true,
- },
-}
diff --git a/lua/plugins/lspconfig.lua b/lua/plugins/lspconfig.lua
index 2f50cce..6ad92da 100644
--- a/lua/plugins/lspconfig.lua
+++ b/lua/plugins/lspconfig.lua
@@ -8,5 +8,7 @@ return {
vim.lsp.enable("clangd")
vim.lsp.config("lua_ls", capabilities)
vim.lsp.enable("lua_ls")
+ vim.lsp.config("zls", capabilities)
+ vim.lsp.enable("zls")
end
}