added telescope.nvim and lualine.nvim

This commit is contained in:
Gabriella Bere 2025-03-31 18:34:23 +01:00
parent 4d3752ca3d
commit 7f07ac41b1

View file

@ -1,4 +1,8 @@
{config, ...}: { {
config,
pkgs,
...
}: {
programs.nvf = { programs.nvf = {
enable = true; enable = true;
settings = { settings = {
@ -7,6 +11,10 @@
enable = true; enable = true;
name = "base16"; name = "base16";
}; };
statusline.lualine.enable = true;
telescope.enable = true;
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
lsp = { lsp = {
@ -24,13 +32,14 @@
markdown.enable = true; markdown.enable = true;
java.enable = true; java.enable = true;
}; };
autocomplete.nvim-cmp = { autocomplete.nvim-cmp.enable = true;
enable = true; startPlugins = with pkgs.vimPlugins; [
}; vimwiki
];
}; };
}; };
}; };
# Pulls stylix base16 colours into nvf for use in the vim theme. # Pulls stylix base16 colours into nvf for use in the vim theme.
# This works for colours generated from the wallpaper, colours set manually and colours pulled from a base16Scheme yaml file. # This works for colours generated from the wallpaper, colours set manually and colours pulled from a base16Scheme yaml file.
programs.nvf.settings.vim.theme.base16-colors = { programs.nvf.settings.vim.theme.base16-colors = {