feat(nvf): slight rice WIP
This commit is contained in:
parent
3ce2f2f0e8
commit
b9e6129961
3 changed files with 24 additions and 3 deletions
|
@ -29,6 +29,7 @@
|
||||||
options = import ./options.nix;
|
options = import ./options.nix;
|
||||||
notify = import ./notify.nix;
|
notify = import ./notify.nix;
|
||||||
snippets = import ./snippets.nix;
|
snippets = import ./snippets.nix;
|
||||||
|
statusline = import ./statusline.nix;
|
||||||
treesitter = import ./treesitter.nix;
|
treesitter = import ./treesitter.nix;
|
||||||
ui = import ./ui.nix;
|
ui = import ./ui.nix;
|
||||||
utility = import ./utility.nix;
|
utility = import ./utility.nix;
|
||||||
|
|
12
modules/home/cli/editor/nvf/statusline.nix
Normal file
12
modules/home/cli/editor/nvf/statusline.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
lualine = {
|
||||||
|
enable = true;
|
||||||
|
refresh = {
|
||||||
|
statusline = 10;
|
||||||
|
winbar = 10;
|
||||||
|
};
|
||||||
|
activeSection = {
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,12 +1,20 @@
|
||||||
{
|
{
|
||||||
borders = {
|
borders = {
|
||||||
enable = true;
|
enable = true;
|
||||||
globalStyle = "double";
|
globalStyle = "rounded";
|
||||||
|
};
|
||||||
|
breadcrumbs = {
|
||||||
|
enable = true;
|
||||||
|
navbuddy.enable = true;
|
||||||
};
|
};
|
||||||
breadcrumbs.enable = true;
|
|
||||||
colorizer.enable = true;
|
colorizer.enable = true;
|
||||||
illuminate.enable = true;
|
illuminate.enable = true;
|
||||||
noice.enable = true;
|
noice = {
|
||||||
|
enable = true;
|
||||||
|
setupOpts = {
|
||||||
|
notify.enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
nvim-ufo.enable = true;
|
nvim-ufo.enable = true;
|
||||||
smartcolumn.enable = true;
|
smartcolumn.enable = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue