27 lines
679 B
Nix
27 lines
679 B
Nix
{ config, ... }: {
|
|
programs.nixvim = {
|
|
highlightOverride = {
|
|
FloatBorder.fg = "#${config.lib.stylix.colors.base0D}";
|
|
};
|
|
plugins = {
|
|
copilot-vim.enable = false;
|
|
flash.enable = true;
|
|
image = {
|
|
enable = false;
|
|
settings.integrations.markdown = {
|
|
clearInInsertMode = true;
|
|
onlyRenderImageAtCursor = true;
|
|
};
|
|
};
|
|
tmux-navigator.enable = true;
|
|
comment.enable = true;
|
|
nvim-autopairs.enable = true;
|
|
todo-comments.enable = true;
|
|
orgmode.enable = false;
|
|
treesitter-context.enable = true;
|
|
nvim-surround.enable = true;
|
|
vim-suda.enable = true;
|
|
};
|
|
};
|
|
}
|