feat: nixvim configuration init
All checks were successful
check-commits / Check commits (pull_request) Successful in 7s
build-flake / build (pull_request) Successful in 6m3s

This commit is contained in:
2025-10-24 10:35:01 +03:00
parent da66344b91
commit 68488e306b
3 changed files with 242 additions and 2 deletions

View File

@@ -1,3 +1,54 @@
{
plugins.blink-cmp.enable = true;
plugins.blink-cmp = {
enable = true;
settings = {
appearance = {
nerd_font_variant = "normal";
use_nvim_cmp_as_default = true;
};
completion = {
accept = {
auto_brackets = {
enabled = true;
semantic_token_resolution = {
enabled = false;
};
};
};
trigger = {
show_on_keyword = true;
show_on_trigger_character = true;
};
documentation = {
auto_show = true;
auto_show_delay_ms = 500;
};
menu = {
auto_show = true;
};
};
keymap = {
preset = "default";
};
signature = {
enabled = true;
};
sources = {
default = [
"lsp"
"buffer"
"snippets"
"path"
];
providers = {
buffer = {
score_offset = -7;
};
lsp = {
fallbacks = [ ];
};
};
};
};
};
}