home: vim: use actual lua files
Since most of the settings are actually just lua in a VimL file.
This commit is contained in:
parent
9530864b10
commit
c2d231d3f1
20 changed files with 0 additions and 41 deletions
10
home/vim/after/plugin/mappings/commentary.lua
Normal file
10
home/vim/after/plugin/mappings/commentary.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
local wk = require("which-key")
|
||||
|
||||
local keys = {
|
||||
name = "Comment/uncomment",
|
||||
c = "Current line",
|
||||
u = "Uncomment the current and adjacent commented lines",
|
||||
["gc"] = "Uncomment the current and adjacent commented lines",
|
||||
}
|
||||
|
||||
wk.register(keys, { prefix = "gc" })
|
||||
Loading…
Add table
Add a link
Reference in a new issue