Compare commits

..

No commits in common. "ff0e110e75733db5f380ee6fbfcab3969e589b8e" and "9c6461b124e130fe022e40112d57da5b073284ae" have entirely different histories.

9 changed files with 13 additions and 13 deletions

View file

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

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

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

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

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

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

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

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

View file

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