Compare commits

...

3 commits

Author SHA1 Message Date
Kevin MacMartin
ff0e110e75 Fix a number of plugins by correcting the &runtimepath declaration 2024-09-03 17:35:45 -04:00
Kevin MacMartin
a97440dadc Add commas to the last item in each nvim-cmp object 2024-09-03 17:13:27 -04:00
Kevin MacMartin
722019a740 Update submodules 2024-09-03 16:58:03 -04:00
9 changed files with 13 additions and 13 deletions

View file

@ -13,7 +13,7 @@
let g:darkcloudpath = expand('<sfile>:p:h')
"add config directory: (distro-agnostic system-wide)
let &runtimepath = printf("%s,%s/vim,%s/local", &runtimepath, g:darkcloudpath, g:darkcloudpath)
let &runtimepath = printf("%s,%s/vim,%s/vim/after,%s/local", &runtimepath, g:darkcloudpath, g:darkcloudpath, g:darkcloudpath)
"load colours
runtime colors/palette.vim

@ -1 +1 @@
Subproject commit 7df7f3721c45aac26b6e0474087538f4681c9c7a
Subproject commit 03fac5dfd6f7880be2c059d58bebe007f0d6d8ee

@ -1 +1 @@
Subproject commit 32252e1450b1c8a27a4a61cdfde60791192a1d0c
Subproject commit 6b495947e230a93de7021c275e174b128c7ddaf5

@ -1 +1 @@
Subproject commit bfb50de9cb0673a3bff620d881f690fb7e0d1328
Subproject commit 5b8b126de02ebfd92e46ed5986b3e58e870b85de

@ -1 +1 @@
Subproject commit ced6375723b20616282f9f6a1018a63ae19b106a
Subproject commit 3a3c6244553f13fdd92d312c82722b57ce6c4bec

@ -1 +1 @@
Subproject commit cab1e6331a170403d227a31b5e63759214c37a8d
Subproject commit f72d59c9f5d4c8b865e0abfeee98f85b47fe5a3a

@ -1 +1 @@
Subproject commit 0444df68cd1cdabc7453d6bd84099458327e5513
Subproject commit 1d18c696c4284e9ce9467a5c04d3adf8af43f994

@ -1 +1 @@
Subproject commit a03b22e96dd894d091e4318c749814132f50dc82
Subproject commit 04d72a228cd0b450e38b8a922ae02ed22a99f11b

View file

@ -50,30 +50,30 @@ if (vim.g.enablecompletion == 1) then
sources = cmp.config.sources({
{
name = "snippy",
priority = 4
priority = 4,
},
{
name = "async_path",
priority = 3
priority = 3,
},
{
name = "buffer",
priority = 3,
max_item_count = 5
max_item_count = 5,
},
{
name = "treesitter",
priority = 2,
max_item_count = 5
max_item_count = 5,
},
{
name = "omni",
priority = 2,
max_item_count = 5
max_item_count = 5,
},
{