mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-12-27 05:41:45 +00:00
Compare commits
No commits in common. "584f9a50b681cee71f6b30fcee8ede3fd8423803" and "eb48ce27f55d4e020d1ac561abfd85cd35a2c982" have entirely different histories.
584f9a50b6
...
eb48ce27f5
@ -1,10 +0,0 @@
|
||||
-- Set keymap to open chat in browser
|
||||
vim.keymap.set('n', '<leader>cc', ':execute codeium#Chat()<Enter>', { desc = '[C]odeium [C]hat' })
|
||||
|
||||
return {
|
||||
-- Free Github Copilot alternative
|
||||
{
|
||||
'Exafunction/codeium.vim',
|
||||
event = 'BufEnter',
|
||||
},
|
||||
}
|
@ -1,11 +1,6 @@
|
||||
return {
|
||||
|
||||
{ -- Highlight, edit, and navigate code
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
dependencies = {
|
||||
'nvim-treesitter/nvim-treesitter-context',
|
||||
'nvim-treesitter/nvim-treesitter-textobjects',
|
||||
},
|
||||
build = ':TSUpdate',
|
||||
config = function()
|
||||
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
||||
@ -73,6 +68,13 @@ return {
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
-- There are additional nvim-treesitter modules that you can use to interact
|
||||
-- with nvim-treesitter. You should go explore a few and see what interests you:
|
||||
--
|
||||
-- - Incremental selection: Included, see :help nvim-treesitter-incremental-selection-mod
|
||||
-- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
|
||||
-- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -81,3 +81,4 @@ vim.opt.cursorline = true
|
||||
vim.opt.scrolloff = 8
|
||||
|
||||
-- vim: ts=2 sts=2 sw=2 et
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user