Skip to content

Commit

Permalink
Added PowerShell to treesitter and enabled treesitter indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
kglundgren committed Nov 5, 2024
1 parent 41fc3f3 commit a7cadbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nvim/lua/config/mini.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ later(function()
}
-- Possible to immediately execute code which depends on the added plugin
require('nvim-treesitter.configs').setup {
ensure_installed = { 'lua', 'vimdoc', 'c_sharp', 'c' },
ensure_installed = { 'lua', 'vimdoc', 'c_sharp', 'c', 'powershell' },
highlight = { enable = true },
indent = { enable = true }
}
end)

0 comments on commit a7cadbe

Please sign in to comment.