mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
Update 2025-07-21
This commit is contained in:
parent
37508d1e12
commit
57dbf50354
@ -111,6 +111,7 @@
|
|||||||
"snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" },
|
"snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" },
|
||||||
"spellwarn.nvim": { "branch": "main", "commit": "12734b47b008d912b4925c0bc2c1248eb534409d" },
|
"spellwarn.nvim": { "branch": "main", "commit": "12734b47b008d912b4925c0bc2c1248eb534409d" },
|
||||||
"spring-boot.nvim": { "branch": "main", "commit": "218c0c26c14d99feca778e4d13f5ec3e8b1b60f0" },
|
"spring-boot.nvim": { "branch": "main", "commit": "218c0c26c14d99feca778e4d13f5ec3e8b1b60f0" },
|
||||||
|
"supermaven-nvim": { "branch": "main", "commit": "07d20fce48a5629686aefb0a7cd4b25e33947d50" },
|
||||||
"tagbar": { "branch": "master", "commit": "2ef4ecba94440fcf8a8c692a0f2b36b332f1f0f2" },
|
"tagbar": { "branch": "master", "commit": "2ef4ecba94440fcf8a8c692a0f2b36b332f1f0f2" },
|
||||||
"tailwind-fold.nvim": { "branch": "main", "commit": "d9e7ca11691d252b35795726dff087bf013b2ebf" },
|
"tailwind-fold.nvim": { "branch": "main", "commit": "d9e7ca11691d252b35795726dff087bf013b2ebf" },
|
||||||
"telescope-bibtex.nvim": { "branch": "master", "commit": "289a6f86ebec06e8ae1590533b732b9981d84900" },
|
"telescope-bibtex.nvim": { "branch": "master", "commit": "289a6f86ebec06e8ae1590533b732b9981d84900" },
|
||||||
|
|||||||
@ -33,6 +33,7 @@ return {
|
|||||||
"kiyoon/jupynium.nvim",
|
"kiyoon/jupynium.nvim",
|
||||||
event = "BufReadPre *.ju.py",
|
event = "BufReadPre *.ju.py",
|
||||||
},
|
},
|
||||||
|
"supermaven-inc/supermaven-nvim",
|
||||||
},
|
},
|
||||||
version = "*",
|
version = "*",
|
||||||
opts = {
|
opts = {
|
||||||
@ -82,7 +83,7 @@ return {
|
|||||||
sql = { "dbee", "buffer", "snippets" },
|
sql = { "dbee", "buffer", "snippets" },
|
||||||
musql = { "dbee", "buffer", "snippets" },
|
musql = { "dbee", "buffer", "snippets" },
|
||||||
plsql = { "dbee", "buffer", "snippets" },
|
plsql = { "dbee", "buffer", "snippets" },
|
||||||
markdown = { "lsp", "obsidian", "ripgrep", "buffer", "path", "snippets" },
|
markdown = { "lsp", "obsidian", "ripgrep", "buffer", "path", "snippets", "supermaven" },
|
||||||
},
|
},
|
||||||
providers = {
|
providers = {
|
||||||
buffer = {
|
buffer = {
|
||||||
@ -111,6 +112,11 @@ return {
|
|||||||
module = "blink.compat.source",
|
module = "blink.compat.source",
|
||||||
score_offset = 10,
|
score_offset = 10,
|
||||||
},
|
},
|
||||||
|
supermaven = {
|
||||||
|
name = "supermaven",
|
||||||
|
module = "blink.compat.source",
|
||||||
|
score_offset = 10,
|
||||||
|
},
|
||||||
ripgrep = {
|
ripgrep = {
|
||||||
module = "blink-ripgrep",
|
module = "blink-ripgrep",
|
||||||
name = "Ripgrep",
|
name = "Ripgrep",
|
||||||
|
|||||||
11
lua/plugins/supermaven.lua
Normal file
11
lua/plugins/supermaven.lua
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
return {
|
||||||
|
"supermaven-inc/supermaven-nvim",
|
||||||
|
enabled = false,
|
||||||
|
opts = {
|
||||||
|
keymaps = {
|
||||||
|
accept_suggestion = "<C-l>",
|
||||||
|
clear_suggestion = "<C-]>",
|
||||||
|
accept_word = "<C-j>",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user