diff options
| author | Ash <ashisbitt@icloud.com> | 2022-09-01 17:38:11 +0100 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2022-09-14 14:56:31 -0400 |
| commit | a1540e079f01ac6898a7cd53253083f5ced8e456 (patch) | |
| tree | d5207edb897463442f1b5fd03dbb73a8316e61a9 | |
| parent | 37d43de0ef35bdc52fc8233ae7afb96eb3c5bbd8 (diff) | |
| download | dots-a1540e079f01ac6898a7cd53253083f5ced8e456.tar.gz | |
Added cpp to treesitter and ordered TS imports
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 2cbb474..85aafad 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -187,7 +187,7 @@ vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { de -- See `:help nvim-treesitter` require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'lua', 'typescript', 'rust', 'go', 'python' }, + ensure_installed = {'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript'}, highlight = { enable = true }, indent = { enable = true }, |