Browse Source

[nvim] commit nvim-treesitter configuration

master
Fredrik Ekre 1 year ago
parent
commit
622b0b5ddf
No known key found for this signature in database
GPG Key ID: DE82E6D5E364C0A2
  1. 11
      .config/nvim/lua/plugins/treesitter.lua

11
.config/nvim/lua/plugins/treesitter.lua

@ -0,0 +1,11 @@ @@ -0,0 +1,11 @@
-- https://github.com/nvim-treesitter/nvim-treesitter
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {"julia", "markdown", "lua"},
highlight = {enable = true}
})
end,
}
Loading…
Cancel
Save