Skip to content

Commit

Permalink
💾 save!
Browse files Browse the repository at this point in the history
  • Loading branch information
steinbrueckri committed Sep 16, 2024
1 parent 2ef30c9 commit 99d18c5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
1 change: 1 addition & 0 deletions .Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ brew "duf"
brew "dust"
brew "easy-rsa"
brew "efm-langserver"
brew "eget"
brew "erlang"
brew "elixir"
brew "entr"
Expand Down
34 changes: 17 additions & 17 deletions .config/nvim/lua/plugins/treesitter.lua
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require"nvim-treesitter.configs".setup {
ensured_installed = "all",
sync_install = false,
auto_install = true,
highlight = {
enable = true -- false will disable the whole extension
},
rainbow = {
enable = true,
extended_mode = true, -- Also highlight non-bracket delimiters like html tags, boolean or table: lang -> boolean
max_file_lines = nil -- Do not enable for files with more than n lines, int
}
}
end
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensured_installed = "all",
sync_install = true,
auto_install = true,
highlight = {
enable = true, -- false will disable the whole extension
},
rainbow = {
enable = true,
extended_mode = true, -- Also highlight non-bracket delimiters like html tags, boolean or table: lang -> boolean
max_file_lines = nil, -- Do not enable for files with more than n lines, int
},
})
end,
}

0 comments on commit 99d18c5

Please sign in to comment.