Compare commits

...

7 Commits

Author SHA1 Message Date
9c9131f696 Bufferline 2024-12-13 21:19:17 -07:00
733fd9aa3e VimBeGood 2024-12-13 21:13:16 -07:00
f9a20ce314 Undotree 2024-12-13 21:09:37 -07:00
e10527e188 Gitsigns 2024-12-13 21:01:33 -07:00
666c8ae605 Rust LSP 2024-12-13 20:40:00 -07:00
f0b24aeb19 Lualine 2024-12-13 20:14:26 -07:00
e29d17d6bd Catppuccin Colors 2024-12-13 20:12:14 -07:00
2 changed files with 31 additions and 0 deletions

View File

@ -3,5 +3,8 @@
# Line numbers
number = true;
relativenumber = true;
# Save Undo History
undofile = true;
};
}

View File

@ -1,4 +1,32 @@
{pkgs, ...}: {
plugins = {
lualine.enable = true;
undotree.enable = true;
bufferline.enable = true;
};
plugins.gitsigns = {
enable = true;
settings.current_line_blame = true;
};
plugins.lsp = {
enable = true;
servers = {
rust_analyzer = {
enable = true;
installRustc = false;
installCargo = false;
};
};
};
colorschemes.catppuccin = {
enable = true;
settings.flavor = "frappe";
};
extraPlugins = ( with pkgs.vimPlugins; [
vim-be-good
]);
}