{ inputs, pkgs, config, lib, theme, ... }: { imports = [ inputs.nixvim.homeManagerModules.nixvim ] ++ lib.optional (builtins.isString theme) ../../../../stylix/${theme}/home-manager/nixvim.nix; programs.nixvim = { enable = true; viAlias = true; vimAlias = true; globals.mapleader = " "; globals.maplocalleader = " "; keymaps = let map = mode: key: action: { mode = mode; key = key; action = action; }; nmap = key: action: map [ "n" ] key action; nvmap = key: action: map [ "n" "v" ] key action; imap = key: action: map [ "i" ] key action; desc = d: { options.desc = d; }; silent = { options.silent = true; }; expr = { options.expr = true; }; in [ # Unmap keys that aren't useful, or that we want to use for different things (nvmap "" "" // silent) (nvmap "" "" // silent) (nvmap "s" "" // silent) # Leave insert mode by pressing j and k simultaneously (imap "jk" "") (imap "kj" "") # Redo (nmap "R" "") # Copy and paste (nvmap "y" "\"+y" // desc "Cop[y] to clipboard") (nvmap "p" "\"+p" // desc "[P]aste from clipboard") # Jump to start/end of line (nvmap "H" "0") (nvmap "L" "$") # Navigate up and down word wrapped text as if it were not word wrapped (nmap "k" "v:count == 0 ? 'gk' : 'k'" // silent // expr) (nmap "j" "v:count == 0 ? 'gj' : 'j'" // silent // expr) # Center cursor when jumping foward or back (nmap "" "zz") (nmap "" "zz") ]; options = { number = true; shiftwidth = 2; # Indent wrapped text. breakindent = true; colorcolumn = "100"; showmode = false; }; plugins = { treesitter.enable = true; lualine.enable = true; luasnip.enable = true; nix.enable = true; nix-develop.enable = true; bufferline.enable = true; which-key.enable = true; intellitab.enable = true; illuminate.enable = true; neo-tree.enable = true; gitsigns.enable = true; toggleterm.enable = true; rainbow-delimiters.enable = true; telescope = { enable = true; extensions.fzf-native.enable = true; keymaps = { "" = { action = "find_files"; desc = "Search files by name"; }; "s" = { action = "live_grep"; desc = "Search by live grep"; }; "b" = { action = "buffers"; desc = "Search open [B]uffers by file name"; }; "h" = { action = "help_tags"; desc = "Search [H]elp"; }; "w" = { action = "grep_string"; desc = "Search for [W]ord under cursor"; }; "g" = { action = "buffers"; desc = "Search [G]it files"; }; "r" = { action = "oldfiles"; desc = "Search [R]ecently opened files by name"; }; }; }; lsp = { enable = true; servers = { rust-analyzer = { enable = true; installCargo = true; installRustc = true; }; nixd.enable = true; pylsp.enable = true; html.enable = true; cssls.enable = true; bashls.enable = true; }; }; nvim-cmp = { enable = true; autoEnableSources = true; sources = [ { name = "nvim_lsp"; } { name = "path"; } { name = "buffer"; } ]; }; }; colorschemes = { tokyonight.enable = true; gruvbox.enable = true; oxocarbon.enable = true; nord.enable = true; catppuccin.enable = true; kanagawa.enable = true; dracula.enable = true; }; extraPlugins = with pkgs.vimPlugins; [ everforest ]; }; }