mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
82 lines
1.8 KiB
Nix
82 lines
1.8 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 = [
|
|
{
|
|
__unkeyed-1 = {
|
|
__raw = ''
|
|
function()
|
|
return require('lsp-progress').progress()
|
|
end,
|
|
'';
|
|
};
|
|
}
|
|
];
|
|
lualine_c = [ "diff" ];
|
|
};
|
|
options.globalstatus = true;
|
|
};
|
|
};
|
|
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;
|
|
})
|
|
];
|
|
}
|