aboutsummaryrefslogtreecommitdiff
path: root/lua/treesitter-setup.lua
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-02-26 20:46:46 +0100
committerDamjan 9000 <damjan.9000@gmail.com>2024-02-26 21:15:29 +0100
commit1ff3a155aab8ef8f9d14b51c382319fcd14e4da3 (patch)
treeff8e7695094365a18c3ca21bda1bd3f0bcf83444 /lua/treesitter-setup.lua
parent4e7e6642a6a5b76c0dbb0e86748fcb12b4c95012 (diff)
parent8b5d48a199c02658e399f5b43ff8d06df1ede7fb (diff)
Merge 'upstream/master' rewrite: slimmer, trimmer and more lazy kickstart.nvim
Diffstat (limited to 'lua/treesitter-setup.lua')
-rw-r--r--lua/treesitter-setup.lua75
1 files changed, 0 insertions, 75 deletions
diff --git a/lua/treesitter-setup.lua b/lua/treesitter-setup.lua
deleted file mode 100644
index 85ac63c..0000000
--- a/lua/treesitter-setup.lua
+++ /dev/null
@@ -1,75 +0,0 @@
--- [[ Configure Treesitter ]]
--- See `:help nvim-treesitter`
--- Defer Treesitter setup after first render to improve startup time of 'nvim {filename}'
-vim.defer_fn(function()
- require('nvim-treesitter.configs').setup {
- -- Add languages to be installed here that you want installed for treesitter
- ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' },
-
- -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
- auto_install = false,
- -- Install languages synchronously (only applied to `ensure_installed`)
- sync_install = false,
- -- List of parsers to ignore installing
- ignore_install = {},
- -- You can specify additional Treesitter modules here: -- For example: -- playground = {--enable = true,-- },
- modules = {},
- highlight = { enable = true },
- indent = { enable = true },
- incremental_selection = {
- enable = true,
- keymaps = {
- init_selection = '<c-space>',
- node_incremental = '<c-space>',
- scope_incremental = '<c-s>',
- node_decremental = '<M-space>',
- },
- },
- textobjects = {
- select = {
- enable = true,
- lookahead = true, -- Automatically jump forward to textobj, similar to targets.vim
- keymaps = {
- -- You can use the capture groups defined in textobjects.scm
- ['aa'] = '@parameter.outer',
- ['ia'] = '@parameter.inner',
- ['af'] = '@function.outer',
- ['if'] = '@function.inner',
- ['ac'] = '@class.outer',
- ['ic'] = '@class.inner',
- },
- },
- move = {
- enable = true,
- set_jumps = true, -- whether to set jumps in the jumplist
- goto_next_start = {
- [']m'] = '@function.outer',
- [']]'] = '@class.outer',
- },
- goto_next_end = {
- [']M'] = '@function.outer',
- [']['] = '@class.outer',
- },
- goto_previous_start = {
- ['[m'] = '@function.outer',
- ['[['] = '@class.outer',
- },
- goto_previous_end = {
- ['[M'] = '@function.outer',
- ['[]'] = '@class.outer',
- },
- },
- swap = {
- enable = true,
- swap_next = {
- ['<leader>a'] = '@parameter.inner',
- },
- swap_previous = {
- ['<leader>A'] = '@parameter.inner',
- },
- },
- },
- }
-end, 0)
-
--- vim: ts=2 sts=2 sw=2 et