Disable window resizing shortcuts and treesitter indentation

This commit is contained in:
juanmagalhaes 2024-06-17 19:11:49 -03:00
parent 0709895f27
commit 9177beefdf
3 changed files with 9 additions and 9 deletions

View file

@ -17,7 +17,7 @@ cmp.setup {
['<C-p>'] = cmp.mapping.select_prev_item(),
['<C-d>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete {},
['<C-space>'] = cmp.mapping.complete {},
['<CR>'] = cmp.mapping.confirm {
behavior = cmp.ConfirmBehavior.Replace,
select = true,

View file

@ -11,7 +11,7 @@ require('nvim-treesitter.configs').setup {
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
-- indent = { enable = true },
incremental_selection = {
enable = true,
keymaps = {