Move to NvChad 3.5; move repository path to a variable.
This commit is contained in:
parent
447a1f0511
commit
af1740df8d
21 changed files with 290 additions and 20 deletions
12
_unused/astronvim/init.lua
Normal file
12
_unused/astronvim/init.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
colorscheme = "monokai",
|
||||
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
||||
pattern = {"*.gotmpl"},
|
||||
callback = function() vim.bo.filetype = "yaml" end,
|
||||
}),
|
||||
vim.api.nvim_create_autocmd({ "VimLeave" }, {
|
||||
callback = function()
|
||||
vim.fn.jobstart("", { detach = true })
|
||||
end,
|
||||
}),
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue