refactor: resolve warnings/errors in checks

This commit is contained in:
2026-02-07 15:14:42 +01:00
committed by Hektor Misplon
parent ff4e9ee337
commit b5776e547c
20 changed files with 5 additions and 27 deletions

View File

@@ -2,10 +2,10 @@ local autocmd = vim.api.nvim_create_autocmd
autocmd("BufNewFile", {
pattern = "shell.nix",
command = "0r ~/.config/nvim/skeletons/shell.nix",
command = "0r ~/.config/nvim/skeletons/shell.nix.skeleton",
})
autocmd("BufNewFile", {
pattern = "flake.nix",
command = "0r ~/.config/nvim/skeletons/flake.nix",
command = "0r ~/.config/nvim/skeletons/flake.nix.skeleton",
})