mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 03:26:40 -07:00
re-organize nixvim
This commit is contained in:
parent
7584b9ebfc
commit
10e3123b7f
22 changed files with 480 additions and 219 deletions
40
programs/nixvim/plugins/ui.nix
Normal file
40
programs/nixvim/plugins/ui.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs.nixvim = {
|
||||
# Colorscheme
|
||||
colorschemes.tokyonight = {
|
||||
enable = true;
|
||||
settings = {
|
||||
style = "night";
|
||||
on_colors.__raw = "function(colors) colors.bg = \"#000000\" end";
|
||||
};
|
||||
};
|
||||
|
||||
plugins = {
|
||||
# Icons for file types
|
||||
web-devicons.enable = true;
|
||||
|
||||
# Color highlighter (shows colors in code)
|
||||
colorizer = {
|
||||
enable = true;
|
||||
settings.user_default_options.names = false;
|
||||
};
|
||||
|
||||
# Indentation guides
|
||||
indent-blankline.enable = true;
|
||||
|
||||
# Markdown preview with live rendering
|
||||
markview.enable = true;
|
||||
|
||||
# UI component library
|
||||
nui.enable = true;
|
||||
|
||||
# Loading/progress indicators
|
||||
fidget.enable = true;
|
||||
|
||||
# Status line (imported from separate file)
|
||||
# lualine is in lualine.nix
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue