Compare commits

..

No commits in common. "a49eeb6bd08800f81c4ae97ceea1426b1d712de8" and "726b7ef0e6ba4c8ff0baa33d0a0fceba204274e4" have entirely different histories.

9
nvimrc
View File

@ -528,7 +528,6 @@ let g:vimsyn_embed= 'lPr'
packadd! nvim-treesitter " https://github.com/nvim-treesitter/nvim-treesitter.git packadd! nvim-treesitter " https://github.com/nvim-treesitter/nvim-treesitter.git
packadd! nvim-treesitter-textobjects " https://github.com/nvim-treesitter/nvim-treesitter-textobjects.git packadd! nvim-treesitter-textobjects " https://github.com/nvim-treesitter/nvim-treesitter-textobjects.git
packadd! nvim-treesitter-refactor " https://github.com/nvim-treesitter/nvim-treesitter-refactor.git packadd! nvim-treesitter-refactor " https://github.com/nvim-treesitter/nvim-treesitter-refactor.git
packadd! nvim-treesitter-context " https://github.com/nvim-treesitter/nvim-treesitter-context.git
packadd! playground " https://github.com/nvim-treesitter/playground.git packadd! playground " https://github.com/nvim-treesitter/playground.git
lua <<EOF lua <<EOF
@ -596,7 +595,7 @@ require 'nvim-treesitter.configs'.setup {
navigation = { navigation = {
enable = true, enable = true,
keymaps = { keymaps = {
-- goto_definition_lsp_fallback = "gd", goto_definition_lsp_fallback = "gd",
goto_next_usage = "]r", goto_next_usage = "]r",
goto_previous_usage = "[r", goto_previous_usage = "[r",
}, },
@ -623,12 +622,6 @@ require 'nvim-treesitter.configs'.setup {
} }
EOF EOF
lua <<EOF
require'treesitter-context'.setup{
enable = true,
}
EOF
" nvim-cmp: " nvim-cmp:
packadd! nvim-cmp " https://github.com/hrsh7th/nvim-cmp.git packadd! nvim-cmp " https://github.com/hrsh7th/nvim-cmp.git