neovim configuration using rocks.nvim plugin manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: minor updates

+12 -4
+2
lua/core/abbrevs.lua
··· 1 1 vim.keymap.set("ca", "lau", "lua") 2 2 vim.keymap.set("ca", "w'", "w") 3 + vim.keymap.set("ca", "REst", "Rest") 4 + vim.keymap.set("ca", "FOrmat", "Format")
+7 -2
lua/snippets/go.lua
··· 19 19 t{"", "}"}, i(0), 20 20 }), 21 21 s("fn", fmt([[ 22 - func {}({}) {{ 22 + func {}({}){} {{ 23 + {}{} 24 + }} 25 + ]], { i(1), i(2), i(3), t("\t"), i(4) })), 26 + s("me", fmt([[ 27 + func ({}) {}({}){} {{ 23 28 {}{} 24 29 }} 25 - ]], { i(1), i(2), t("\t"), i(3) })), 30 + ]], { i(1), i(2), i(3), i(4), t("\t"), i(5) })), 26 31 })
+1 -1
lua/snippets/lua.lua
··· 37 37 t{"", "end"}, 38 38 }), 39 39 s("it", fmt([[ 40 - it("{}", function () 40 + it("{}", function() 41 41 {}{} 42 42 end) 43 43 ]], { i(1), t("\t"), i(2) }))
+2 -1
todo.norg
··· 1 1 - (x) `ds'` to delete surrounding `'` 2 2 - ( ) `ds%` to delete any surrounding under cursor 3 3 - ( ) `:h 'matchpairs'` 4 - - ( ) statusline 4 + - (x) statusline 5 5 - ( ) [sg.nvim]{https://github.com/sourcegraph/sg.nvim} support with luarocks maybe? 6 6 - ( ) [rustaceanvim]{https://github.com/mrcjkb/rustaceanvim} 7 7 - ( ) [macro-nvim's amazing util codes]{https://sourcegraph.com/github.com/Bekaboo/nvim@8401d73197e4ec214fe2bae0e0eb9b17a1f4cfbc/-/blob/lua/utils/git.lua?L74} 8 + - ( ) [ts-comment.nvim](https://github.com/folke/ts-comments.nvim)