2022-06-18 05:27:17 +01:00
|
|
|
-- commands
|
2022-05-23 08:24:03 +01:00
|
|
|
vim.cmd "silent! command! NvChadUpdate lua require('nvchad').update_nvchad()"
|
2022-06-16 18:41:19 +01:00
|
|
|
vim.cmd "silent! command! NvChadSnapshotCreate lua require('nvchad').snap_create()"
|
|
|
|
vim.cmd "silent! command! NvChadSnapshotDelete lua require('nvchad').snap_delete()"
|
|
|
|
vim.cmd "silent! command! NvChadSnapshotCheckout lua require('nvchad').snap_checkout()"
|
2022-05-23 08:24:03 +01:00
|
|
|
|
2022-06-20 00:26:13 +01:00
|
|
|
|
2022-06-18 05:27:17 +01:00
|
|
|
-- autocmds
|
2022-05-23 08:24:03 +01:00
|
|
|
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
|
2022-06-20 00:26:13 +01:00
|
|
|
-- wrap the PackerSync command to warn people before using it in NvChadSnapshots
|
|
|
|
autocmd("VimEnter", {
|
|
|
|
callback = function()
|
|
|
|
vim.cmd "command! -nargs=* -complete=customlist,v:lua.require'packer'.plugin_complete PackerSync lua require('core.utils').packer_sync(<f-args>)"
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2022-05-23 08:24:03 +01:00
|
|
|
-- Disable statusline in dashboard
|
|
|
|
autocmd("FileType", {
|
|
|
|
pattern = "alpha",
|
|
|
|
callback = function()
|
|
|
|
vim.opt.laststatus = 0
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
autocmd("BufUnload", {
|
|
|
|
buffer = 0,
|
|
|
|
callback = function()
|
|
|
|
vim.opt.laststatus = 3
|
|
|
|
end,
|
|
|
|
})
|
2022-06-05 14:41:26 +01:00
|
|
|
|
2022-06-06 13:56:29 +01:00
|
|
|
-- Don't auto commenting new lines
|
2022-06-15 02:56:10 +01:00
|
|
|
autocmd("BufEnter", {
|
|
|
|
pattern = "*",
|
|
|
|
command = "set fo-=c fo-=r fo-=o",
|
2022-06-06 13:56:29 +01:00
|
|
|
})
|
2022-06-18 09:55:23 +01:00
|
|
|
|
|
|
|
autocmd("InsertLeave", {
|
|
|
|
callback = function()
|
2022-06-20 00:26:13 +01:00
|
|
|
if require("luasnip").session.current_nodes[vim.api.nvim_get_current_buf()]
|
|
|
|
and not require("luasnip").session.jump_active
|
2022-06-18 09:55:23 +01:00
|
|
|
then
|
|
|
|
require("luasnip").unlink_current()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|