Skip to content

Commit

Permalink
feat(treesitter): provide all necessary treesitter's by default and d…
Browse files Browse the repository at this point in the history
…o not trigger signature help for now
  • Loading branch information
pwnwriter committed Oct 8, 2024
1 parent 0825aca commit 270a1c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ local plugins = {
},
config = function()
require("nvim-treesitter.configs").setup {
ensure_installed = { "lua", "vimdoc", "rust", "go" },
ensure_installed = { "lua", "vimdoc", "rust", "go", "astro", "json", "toml", "markdown" },
highlight = {
enable = true,
use_languagetree = true,
Expand All @@ -117,7 +117,7 @@ local plugins = {
nerd_font_variant = "normal",
accept = { auto_brackets = { enabled = true } },

trigger = { signature_help = { enabled = true } },
-- trigger = { signature_help = { enabled = true } },

keymap = {
show = "<C-space>",
Expand Down

0 comments on commit 270a1c4

Please sign in to comment.