refactor: adjust hyprland, kitty, and nvim settings

- hyprland: add hy3 plugin config, prefer kitty terminal, change shift+exit to E
- kitty: reduce font size to 10.5
- nvim: change indent width to 2 spaces
- nvim: replace avante with parrot (Ollama provider)
- nvim: temporarily disable treesitter install
This commit is contained in:
2026-03-07 15:12:35 -08:00
parent 8e87a3a909
commit cad7412741
6 changed files with 100 additions and 69 deletions

View File

@@ -16,9 +16,9 @@ vim.cmd("set number")
vim.cmd("set relativenumber")
vim.cmd("set expandtab")
vim.cmd("set shiftwidth=4")
vim.cmd("set softtabstop=4")
vim.cmd("set tabstop=4")
vim.cmd("set shiftwidth=2")
vim.cmd("set softtabstop=2")
vim.cmd("set tabstop=2")
vim.cmd("set smartindent")
vim.cmd("set backspace=indent,eol,start")