refactor: simplify fish prompt and update config

This commit is contained in:
mitchell 2026-04-23 06:02:32 -04:00
parent ac3ae0076b
commit 9b64299c45
7 changed files with 35 additions and 84 deletions

View file

@ -18,3 +18,11 @@ autocmd("TermOpen", {
command = "setlocal nonumber norelativenumber",
group = "TerminalSettings",
})
-- Yaml settings
augroup("YamlSettings", { clear = true })
autocmd("FileType", {
pattern = "y*ml",
command = "setlocal foldenable foldlevel=1",
group = "YamlSettings",
})