Skip to content

Commit

Permalink
Adjust blink config
Browse files Browse the repository at this point in the history
  • Loading branch information
djensenius committed Dec 25, 2024
1 parent 74e1053 commit 7cf7226
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions nvim/lua/plugins/blink-cmp.lua
Original file line number Diff line number Diff line change
@@ -1,18 +1,39 @@
return {
'saghen/blink.cmp',
lazy = false, -- lazy loading handled internally
dependencies = { 'rafamadriz/friendly-snippets' }, -- dependencies should be in a table
dependencies = {
'rafamadriz/friendly-snippets',
}, -- dependencies should be in a table

version = 'v0.*',

opts = {
keymap = { preset = 'default' },

appearance = {
use_nvim_cmp_as_default = true,
nerd_font_variant = 'mono'
},

completion = {
menu = {
border = 'rounded'
},
documentation = {
auto_show = true,
auto_show_delay_ms = 250,
treesitter_highlighting = true,
window = {
border = 'rounded',
},
},
},
signature = {
enabled = true,
window = {
border = 'rounded',
},
},

sources = {
default = { 'lsp', 'path', 'snippets', 'buffer' },
},
Expand Down

0 comments on commit 7cf7226

Please sign in to comment.