2022-05-23 09:24:03 +02:00
|
|
|
vim.cmd "silent! command! NvChadUpdate lua require('nvchad').update_nvchad()"
|
2022-06-16 19:41:19 +02: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 09:24:03 +02:00
|
|
|
|
|
|
|
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
|
|
|
|
-- 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 15:41:26 +02:00
|
|
|
|
2022-06-06 14:56:29 +02:00
|
|
|
-- Don't auto commenting new lines
|
2022-06-15 03:56:10 +02:00
|
|
|
autocmd("BufEnter", {
|
|
|
|
pattern = "*",
|
|
|
|
command = "set fo-=c fo-=r fo-=o",
|
2022-06-06 14:56:29 +02:00
|
|
|
})
|