aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r--.config/nvim/lua/plugins.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index 1f173da..60eebf0 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -57,6 +57,7 @@ local PKGS = {
{ url = "https://github.com/nanotee/sqls.nvim.git" };
{ url = "https://github.com/lvimuser/lsp-inlayhints.nvim.git" };
{ url = "https://github.com/sigmaSd/deno-nvim.git" };
+ { url = "https://github.com/ray-x/lsp_signature.nvim.git" };
-- Dev container
{ url = "https://codeberg.org/esensar/nvim-dev-container.git" };
@@ -129,7 +130,7 @@ local function init_plugins()
-- Available modes: foreground, background
mode = "foreground"; -- Set the display mode.
})
- vim.g.minimap_auto_start = 1
+ vim.g.minimap_auto_start = 0
vim.g.minimap_highlight_range = 1
vim.g.minimap_highlight_search = 1
@@ -177,6 +178,13 @@ local function init_plugins()
})
vim.fn["mkdp#util#install"]()
+ require("nvim-treesitter.configs").setup({
+ ensure_installed = { "javascript"; "typescript"; "lua"; "c_sharp"; "jsonc" };
+ sync_install = false;
+ auto_install = true;
+ highlight = { enable = true; disable = { "markdown"; "yaml"; "sql" } };
+ })
+
end
return {