Initial commit
This commit is contained in:
commit
e2cff543d6
29 changed files with 2701 additions and 0 deletions
nvim/plugin
9
nvim/plugin/commands.lua
Normal file
9
nvim/plugin/commands.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
if vim.g.did_load_commands_plugin then
|
||||
return
|
||||
end
|
||||
vim.g.did_load_commands_plugin = true
|
||||
|
||||
local api = vim.api
|
||||
|
||||
-- delete current buffer
|
||||
api.nvim_create_user_command('Q', 'bd % <CR>', {})
|
Loading…
Add table
Add a link
Reference in a new issue