LSP finally working a decent amount
This commit is contained in:
parent
518951ec2f
commit
9c884fb841
15 changed files with 489 additions and 112 deletions
10
lua/plugins/comments.lua
Normal file
10
lua/plugins/comments.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
vim.g.NERDCreateDefaultMappings = 0
|
||||
vim.cmd('filetype plugin on')
|
||||
|
||||
return {
|
||||
"preservim/nerdcommenter",
|
||||
keys = {
|
||||
{ "<leader>/", ':call nerdcommenter#Comment(0, "toggle")<CR>', desc = "Toggle comments on selection" },
|
||||
{ "<leader>/", ':call nerdcommenter#Comment(0, "toggle")<CR>', desc = "Toggle comments on selection", mode = "v" },
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue