added telescope.nvim and lualine.nvim
This commit is contained in:
parent
4d3752ca3d
commit
7f07ac41b1
1 changed files with 14 additions and 5 deletions
|
@ -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 = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue