nvim: bootstrap minimal nix-first config

This commit is contained in:
Rasyidan Akbar F. 2026-03-11 05:17:26 +07:00
commit d90c74150f
14 changed files with 557 additions and 12 deletions

View file

@ -0,0 +1,40 @@
return {
{
"saghen/blink.cmp",
version = "*",
opts = {
keymap = {
preset = "super-tab",
},
appearance = {
nerd_font_variant = "mono",
},
completion = {
accept = {
auto_brackets = {
enabled = true,
},
},
documentation = {
auto_show = false,
},
ghost_text = {
enabled = true,
show_with_menu = false,
},
menu = {
auto_show = false,
},
},
signature = {
enabled = true,
},
sources = {
default = { "lsp", "path", "buffer" },
},
fuzzy = {
implementation = "prefer_rust_with_warning",
},
},
},
}