refactor: Split nix config
This commit is contained in:
parent
37b30544c1
commit
2faf9059b8
4 changed files with 121 additions and 67 deletions
|
@ -55,6 +55,16 @@ return {
|
|||
keys = {
|
||||
{ "gc", mode = { "n", "v", "i" } },
|
||||
},
|
||||
init = function ()
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "nix" },
|
||||
callback = function()
|
||||
vim.opt_local.commentstring = "# %s"
|
||||
end,
|
||||
group = generalSettingsGroup,
|
||||
})
|
||||
|
||||
end,
|
||||
},
|
||||
{
|
||||
"dstein64/vim-startuptime",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue