mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
24 lines
411 B
Nix
Executable File
24 lines
411 B
Nix
Executable File
_: {
|
|
programs.nixvim = {
|
|
plugins.mini = {
|
|
enable = true;
|
|
|
|
modules = {
|
|
ai = {
|
|
n_lines = 500;
|
|
};
|
|
statusline = {
|
|
use_icons.__raw = "vim.g.have_nerd_font";
|
|
};
|
|
surround = {
|
|
};
|
|
};
|
|
};
|
|
extraConfigLua = ''
|
|
require('mini.statusline').section_location = function()
|
|
return '%2l:%-2v'
|
|
end
|
|
'';
|
|
};
|
|
}
|