mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-08 13:10:25 +00:00
30 lines
769 B
Lua
30 lines
769 B
Lua
-- commands
|
|
vim.cmd "silent! command! NvChadUpdate lua require('nvchad').update_nvchad()"
|
|
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()"
|
|
|
|
-- autocmds
|
|
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,
|
|
})
|
|
|
|
-- Don't auto commenting new lines
|
|
autocmd("BufEnter", {
|
|
pattern = "*",
|
|
command = "set fo-=c fo-=r fo-=o",
|
|
})
|