diff options
author | Chris <[email protected]> | 2021-03-16 22:06:38 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-16 22:06:38 -0400 |
commit | be6c6ca92fa9e1f596bfaef0c1197b7144d70036 (patch) | |
tree | f2b98636732f70d6a5e9a7e82a075766e8506149 /lua/nv-comment/init.lua | |
parent | 1bcb1fd6edd02b804f7704c5ef70c1e7c34db0a5 (diff) |
udpates
Diffstat (limited to 'lua/nv-comment/init.lua')
-rw-r--r-- | lua/nv-comment/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/nv-comment/init.lua b/lua/nv-comment/init.lua new file mode 100644 index 00000000..df794386 --- /dev/null +++ b/lua/nv-comment/init.lua @@ -0,0 +1,3 @@ +require('nvim_comment').setup() +vim.api.nvim_set_keymap("n", "<leader>/", ":CommentToggle<CR>", {noremap=true, silent = true}) +vim.api.nvim_set_keymap("v", "<leader>/", ":CommentToggle<CR>", {noremap=true, silent = true}) |