neovim-flake/config/plugins/qol.nix

103 lines
2.2 KiB
Nix

# Quality of life plugins
{ pkgs, inputs, ... }:
{
extraPackages = with pkgs; [
ripgrep
fd
];
plugins = {
zen-mode.enable = true;
direnv.enable = true;
intellitab.enable = true;
guess-indent.enable = true;
comment.enable = true;
vim-bbye.enable = true;
indent-blankline.enable = true;
which-key = {
enable = true;
settings.delay = 1000;
};
nvim-autopairs.enable = true;
yanky = {
enable = true;
enableTelescope = true;
};
trouble.enable = true;
barbecue.enable = true;
lualine = {
enable = true;
settings = {
sections = {
lualine_a = [ "branch" ];
lualine_b = [
"diff"
"diagnostics"
];
lualine_c = [
"filetype"
"progress"
];
lualine_x = [
"encoding"
"fileformat"
];
lualine_y = [
{
__unkeyed-1 = {
__raw = ''
function()
return require('lsp-progress').progress()
end,
'';
};
}
];
lualine_z = [ "location" ];
};
options = {
globalstatus = true;
disabled_filetypes = [
"ministarter"
];
section_separators = {
left = "";
right = "";
};
};
};
};
crates-nvim.enable = true;
# git stuff
gitsigns = {
enable = true;
settings = {
current_line_blame_opts = {
virt_text = true;
virt_text_pos = "eol";
};
};
};
neogit = {
enable = true;
settings.graph_style = "unicode";
};
# Language specific tools
markdown-preview.enable = true;
ts-autotag.enable = true;
};
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "satellite.nvim";
src = inputs.satellite;
})
(pkgs.vimUtils.buildVimPlugin {
name = "render-markdown.nvim";
src = inputs.render-markdown;
})
(pkgs.vimUtils.buildVimPlugin {
name = "lsp-progress.nvim";
src = inputs.lsp-progress;
})
];
}