Migrate Neovim to lazy.nvim and update dotfiles

- Neovim:
    - Migrate from vim-plug to lazy.nvim.
    - Refactor config (`init.lua`, `config.vim`).
    - Replace Coq with blink.cmp, add CodeCompanion.
- Fish:
    - Add aliases (`cl`, `ai`), env vars (`ANDROID_HOME`, `PYENV`).
    - Update keybindings and conditional tool initialization (starship, zoxide, fzf, pyenv).
    - Refine ASDF/Homebrew setup.
- Git: Add aliases (`rs`, `rss`, `ap`).
- Other: Update SKHD bindings and WezTerm path/settings.
This commit is contained in:
mitchell 2025-04-14 01:24:25 -04:00
parent 4d4e715cb1
commit b55aab8a89
11 changed files with 436 additions and 3066 deletions

View file

@ -6,6 +6,12 @@ local is_darwin = function()
return wezterm.target_triple:find("darwin") ~= nil
end
if is_darwin() then
config.default_prog = { "/opt/homebrew/bin/fish", "-l" }
end
config.window_decorations = "RESIZE"
config.force_reverse_video_cursor = true
config.colors = {
foreground = "#dcd7ba",
@ -26,10 +32,9 @@ config.colors = {
indexed = { [16] = "#ffa066", [17] = "#ff5d62" },
}
config.window_background_opacity = 0.7
config.window_decorations = "RESIZE"
config.window_background_opacity = is_darwin() and 0.85 or 0.7
config.font_size = is_darwin() and 13 or 11
config.font_size = is_darwin() and 14 or 11
config.tab_bar_at_bottom = true
config.hide_tab_bar_if_only_one_tab = true