2024-03-26 16:18:17 +01:00
|
|
|
{ pkgs, lib, config, nixvim, ... }:
|
2024-01-08 23:04:24 +01:00
|
|
|
{
|
|
|
|
# config = lib.mkIf config.programs.nixvim.enable { # Somehow this is infinite recursion?
|
|
|
|
config = {
|
2024-01-11 23:54:03 +01:00
|
|
|
home.sessionVariables = {
|
|
|
|
EDITOR = "nvim";
|
|
|
|
} // lib.optionalAttrs config.frogeye.desktop.xorg {
|
|
|
|
VISUAL = "nvim";
|
|
|
|
};
|
|
|
|
programs.bash.shellAliases = {
|
|
|
|
vi = "nvim";
|
|
|
|
vim = "nvim";
|
|
|
|
};
|
2024-01-08 23:04:24 +01:00
|
|
|
programs.nixvim = {
|
2024-01-27 14:23:26 +01:00
|
|
|
# Required, otherwise light mode becomes a default dark theme.
|
|
|
|
colorschemes.base16.colorscheme = "solarized-${config.stylix.polarity}";
|
|
|
|
|
2024-01-08 23:04:24 +01:00
|
|
|
options = {
|
|
|
|
ignorecase = true;
|
|
|
|
smartcase = true;
|
|
|
|
gdefault = true;
|
|
|
|
|
|
|
|
tabstop = 4;
|
|
|
|
shiftwidth = 4;
|
|
|
|
expandtab = true;
|
|
|
|
|
|
|
|
splitbelow = true;
|
|
|
|
visualbell = true;
|
|
|
|
|
|
|
|
updatetime = 250;
|
|
|
|
undofile = true;
|
|
|
|
|
|
|
|
wildmode = "longest:full,full";
|
|
|
|
wildmenu = true;
|
|
|
|
};
|
|
|
|
globals = {
|
|
|
|
netrw_fastbrowse = 0; # Close the file explorer once you select a file
|
|
|
|
};
|
|
|
|
plugins = {
|
|
|
|
# Go to whatever
|
|
|
|
telescope = {
|
|
|
|
enable = true;
|
|
|
|
keymaps = {
|
|
|
|
gF = "find_files";
|
|
|
|
gf = "git_files";
|
|
|
|
gB = "buffers";
|
|
|
|
gl = "current_buffer_fuzzy_find";
|
|
|
|
gL = "live_grep";
|
|
|
|
gT = "tags";
|
|
|
|
gt = "treesitter";
|
|
|
|
gm = "marks";
|
|
|
|
gh = "oldfiles";
|
|
|
|
gH = "command_history";
|
|
|
|
gS = "search_history";
|
|
|
|
gC = "commands";
|
|
|
|
};
|
|
|
|
defaults = {
|
|
|
|
vimgrep_arguments = [
|
|
|
|
"${pkgs.ripgrep}/bin/rg"
|
|
|
|
"--color=never"
|
|
|
|
"--no-heading"
|
|
|
|
"--with-filename"
|
|
|
|
"--line-number"
|
|
|
|
"--column"
|
|
|
|
"--smart-case"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
extensions.fzf-native = {
|
|
|
|
enable = true;
|
|
|
|
caseMode = "smart_case";
|
|
|
|
fuzzy = true;
|
|
|
|
overrideFileSorter = true;
|
|
|
|
overrideGenericSorter = true;
|
|
|
|
};
|
|
|
|
};
|
2024-01-23 23:38:48 +01:00
|
|
|
# TODO Go to any symbol in the current working directory, for when LSP doesn't support it.
|
|
|
|
# Or at least something to live_grep the curent word.
|
2024-01-08 23:04:24 +01:00
|
|
|
|
|
|
|
# Surrounding pairs
|
|
|
|
surround.enable = true; # Change surrounding pairs (e.g. brackets, quotes)
|
|
|
|
|
|
|
|
undotree.enable = true; # Navigate edition history
|
|
|
|
|
|
|
|
};
|
|
|
|
extraPlugins = with pkgs.vimPlugins; [
|
|
|
|
# Search/replace
|
|
|
|
vim-abolish # Regex for words, with case in mind
|
|
|
|
vim-easy-align # Aligning lines around a certain character
|
|
|
|
|
|
|
|
# Surrounding pairs
|
|
|
|
targets-vim # Better interaction with surrounding pairs
|
|
|
|
|
|
|
|
# Language-specific
|
|
|
|
tcomment_vim # Language-aware (un)commenting
|
|
|
|
] ++ lib.optionals config.frogeye.dev.ansible [
|
2024-01-18 23:09:18 +01:00
|
|
|
ansible-vim
|
|
|
|
# Doesn't generate snippets, but those are for UltiSnip anyways
|
2024-01-08 23:04:24 +01:00
|
|
|
];
|
|
|
|
extraConfigVim = ''
|
|
|
|
" Avoid showing message extra message when using completion
|
|
|
|
set shortmess+=c
|
|
|
|
'';
|
|
|
|
|
|
|
|
userCommands = {
|
2024-01-20 19:04:06 +01:00
|
|
|
Reload = { command = "source ${config.xdg.configHome}/nvim/init.lua"; force = false; };
|
|
|
|
# 24.05 force=false was for https://github.com/nix-community/nixvim/issues/954
|
2024-01-08 23:04:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
keymaps = [
|
|
|
|
# GENERAL
|
|
|
|
|
|
|
|
# Allow saving of files as sudo when I forgot to start vim using sudo.
|
|
|
|
# From https://stackoverflow.com/a/7078429
|
|
|
|
{ mode = "c"; key = "w!!"; action = "w !sudo tee > /dev/null %"; }
|
|
|
|
|
|
|
|
{ mode = "i"; key = "jk"; action = "<Esc>"; }
|
|
|
|
{ mode = "v"; key = "<Enter>"; action = "<Esc>"; }
|
|
|
|
{ key = "<Enter>"; action = "o<Esc>"; }
|
|
|
|
|
|
|
|
# { key = "<C-H>"; action = ":bp<CR>"; }
|
|
|
|
# { key = "<C-L>"; action = ":bn<CR>"; }
|
|
|
|
{ key = "<C-K>"; action = "kkkkkkkkkkkkkkkkkkkkk"; }
|
|
|
|
{ key = "<C-J>"; action = "jjjjjjjjjjjjjjjjjjjjj"; }
|
|
|
|
|
|
|
|
# \s to replace globally the word under the cursor
|
|
|
|
{ key = "<Leader>s"; action = ":%s/\\<<C-r><C-w>\\>/"; }
|
|
|
|
|
|
|
|
# PLUGINS
|
|
|
|
|
|
|
|
# undotree
|
|
|
|
{ key = "<Space>u"; action = "<Cmd>UndotreeToggle<CR>"; options = { silent = true; }; }
|
|
|
|
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-01-09 21:53:00 +01:00
|
|
|
|
|
|
|
imports = [
|
2024-03-26 16:18:17 +01:00
|
|
|
nixvim.homeManagerModules.nixvim
|
2024-01-12 18:08:11 +01:00
|
|
|
./code.nix
|
2024-01-09 21:53:00 +01:00
|
|
|
./completion.nix
|
2024-01-12 18:08:11 +01:00
|
|
|
./decoration.nix
|
2024-01-18 22:49:46 +01:00
|
|
|
./git.nix
|
2024-01-12 18:08:11 +01:00
|
|
|
./lsp.nix
|
2024-01-09 21:53:00 +01:00
|
|
|
];
|
2024-01-08 23:04:24 +01:00
|
|
|
}
|