feat: added UpdateConfig command
This commit is contained in:
parent
8ffbe73ff7
commit
5748d1bcdb
1 changed files with 9 additions and 0 deletions
9
init.lua
9
init.lua
|
@ -123,3 +123,12 @@ PALETTE:set_colors()
|
||||||
|
|
||||||
--|| UTILITY
|
--|| UTILITY
|
||||||
function P(something) print(vim.inspect(something)) end
|
function P(something) print(vim.inspect(something)) end
|
||||||
|
|
||||||
|
vim.api.nvim_create_user_command(
|
||||||
|
'UpdateConfig',
|
||||||
|
function(args)
|
||||||
|
local stdout = vim.fn.system(string.format("git -C %s pull", vim.fn.stdpath('config')))
|
||||||
|
print(stdout:sub(0, #stdout-1))
|
||||||
|
end,
|
||||||
|
{}
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue