init
This commit is contained in:
commit
6eae514dab
15 changed files with 500 additions and 0 deletions
41
plugins/ui.nix
Normal file
41
plugins/ui.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{...}: {
|
||||
vim = {
|
||||
visuals.indent-blankline.enable = true;
|
||||
|
||||
mini = {
|
||||
icons.enable = true;
|
||||
surround.enable = true;
|
||||
};
|
||||
|
||||
luaConfigRC.mini-icons-mock = ''
|
||||
require("mini.icons").mock_nvim_web_devicons()
|
||||
'';
|
||||
|
||||
binds.whichKey = {
|
||||
enable = true;
|
||||
setupOpts.delay = 300;
|
||||
};
|
||||
|
||||
ui.noice = {
|
||||
enable = true;
|
||||
setupOpts = {
|
||||
lsp.override = {
|
||||
"vim.lsp.util.convert_input_to_markdown_lines" = true;
|
||||
"vim.lsp.util.stylize_markdown" = true;
|
||||
};
|
||||
presets = {
|
||||
lsp_doc_border = true;
|
||||
bottom_search = true;
|
||||
long_message_to_split = true;
|
||||
inc_rename = true;
|
||||
};
|
||||
messages.enabled = false;
|
||||
};
|
||||
};
|
||||
|
||||
dashboard.alpha = {
|
||||
enable = true;
|
||||
theme = "dashboard";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue