Major configuration migration following 2025 best practices:
- Add nixvim flake input with proper nixpkgs following
- Import nixvim.homeManagerModules.nixvim in home configuration
- Convert nvim.nix from programs.neovim to programs.nixvim
- Migrate all settings to declarative NixVim syntax:
* vim.opt.* → opts.*
* vim.g.mapleader → globals.mapleader
* Raw Lua keymaps → structured keymaps array
* Plugin configs → declarative plugin options
- Preserve all functionality:
* Gruvbox hard contrast colorscheme
* nvim-tree with dotfile/gitignore filters
* Treesitter with all grammars
* Lualine with relative paths and gruvbox theme
* Fugitive git integration
* System clipboard keybindings
* All leader key mappings
Benefits: Type safety, better documentation, cleaner code structure
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Tmux:
- Add explicit terminal = "screen-256color" to prevent home-manager
from overriding with plain "screen" terminal setting
- This ensures proper 256-color support for gruvbox theme
Neovim:
- Set explicit colorscheme to maintain consistency with lualine theme
- Remove confusing "no custom colorscheme" comment
Also update flake.lock with latest dependencies.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add nix-darwin and home-manager flake configuration
- Include modular neovim setup with plugins and keybinds
- Add tmux configuration with gruvbox theme and vim-like bindings
- Set up .gitignore for nix build outputs and temporary files
Ready for multi-machine deployment across macOS systems.