2022-07-25 15:49:33 +02:00
|
|
|
-- add binaries installed by mason.nvim to path
|
2022-07-26 09:22:16 +02:00
|
|
|
local is_windows = vim.loop.os_uname().sysname == "Windows_NT"
|
|
|
|
vim.env.PATH = vim.env.PATH .. (is_windows and ";" or ":") .. vim.fn.stdpath "data" .. "/mason/bin"
|
2022-07-25 15:49:33 +02:00
|
|
|
|
2022-06-18 06:27:17 +02:00
|
|
|
-- commands
|
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
|
|
|
|
2022-06-18 06:27:17 +02:00
|
|
|
-- autocmds
|
2022-05-23 09:24:03 +02:00
|
|
|
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
|
2022-07-08 15:50:57 +02:00
|
|
|
-- dont list quickfix buffers
|
|
|
|
autocmd("FileType", {
|
2022-07-22 18:00:00 +02:00
|
|
|
pattern = "qf",
|
|
|
|
callback = function()
|
|
|
|
vim.opt_local.buflisted = false
|
|
|
|
end,
|
2022-07-08 15:50:57 +02:00
|
|
|
})
|
|
|
|
|
2022-06-20 01:26:13 +02:00
|
|
|
-- wrap the PackerSync command to warn people before using it in NvChadSnapshots
|
|
|
|
autocmd("VimEnter", {
|
2022-07-22 18:00:00 +02:00
|
|
|
callback = function()
|
2022-08-06 05:58:05 +02:00
|
|
|
vim.cmd "command! -nargs=* -complete=customlist,v:lua.require'packer'.plugin_complete PackerSync lua require('plugins') require('core.utils').packer_sync(<f-args>)"
|
2022-07-22 18:00:00 +02:00
|
|
|
end,
|
2022-06-20 01:26:13 +02:00
|
|
|
})
|