Add fallback() to autocompletion, add comments shortcut, add require
plugins
This commit is contained in:
parent
bfa0fbfd68
commit
c88ea4938a
4 changed files with 32 additions and 21 deletions
17
lua/kickstart/plugins/comments.lua
Normal file
17
lua/kickstart/plugins/comments.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
return {
|
||||
'numToStr/Comment.nvim',
|
||||
|
||||
config = function()
|
||||
require('Comment').setup {
|
||||
opleader = {
|
||||
---Line-comment keymap
|
||||
line = '<leader>/',
|
||||
},
|
||||
toggler = {
|
||||
line = '<leader>/',
|
||||
},
|
||||
}
|
||||
end,
|
||||
|
||||
lazy = false,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue