feat: ✨ add new dotfiles
This commit is contained in:
parent
7a5975bb81
commit
e8bfb35161
34 changed files with 1474 additions and 0 deletions
39
.config/nvim/lua/plugins/blink.lua
Normal file
39
.config/nvim/lua/plugins/blink.lua
Normal file
|
@ -0,0 +1,39 @@
|
|||
return {
|
||||
"saghen/blink.cmp",
|
||||
version = '*',
|
||||
opts = {
|
||||
keymap = {
|
||||
["<cr>"] = { "accept", "fallback" },
|
||||
["<S-Up>"] = { "scroll_documentation_up", "fallback" },
|
||||
["<S-Down>"] = { "scroll_documentation_down", "fallback" },
|
||||
},
|
||||
appearance = {
|
||||
nerd_font_variant = "normal"
|
||||
},
|
||||
completion = {
|
||||
ghost_text = {
|
||||
enabled = true,
|
||||
},
|
||||
list = {
|
||||
selection = {
|
||||
preselect = false,
|
||||
auto_insert = false,
|
||||
},
|
||||
},
|
||||
documentation = {
|
||||
auto_show = true,
|
||||
auto_show_delay_ms = 1000,
|
||||
},
|
||||
menu = {
|
||||
draw = {
|
||||
treesitter = {
|
||||
"lsp"
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
signature = {
|
||||
enabled = true,
|
||||
}
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue