Compare commits

...

3 commits

Author SHA1 Message Date
76b06f09c9
feat: lexima.vim 2025-03-16 16:49:21 -07:00
7643ed1550
feat: Configure blink.cmp 2025-03-16 16:43:33 -07:00
4b8c4ae091
perf: Remove unused marleyos input 2025-03-16 16:37:56 -07:00
3 changed files with 20 additions and 1 deletions

View file

@ -8,7 +8,6 @@
nixCats.url = "github:BirdeeHub/nixCats-nvim";
devenv.url = "github:cachix/devenv";
marleyos.url = "git+https://codewith.babesonthe.net/punkfairie/marleyos";
neovim-nightly-overlay = {
url = "github:nix-community/neovim-nightly-overlay";
@ -309,6 +308,7 @@
# Custom
cutlass-nvim
diffview-nvim
lexima-vim
nerdy-nvim
nvim-emmet
rose-pine

13
lua/plugins/blink-cmp.lua Normal file
View file

@ -0,0 +1,13 @@
return {
{
'saghen/blink.cmp',
---@module 'blink.cmp'
---@type blink.cmp.Config
opts = {
ghost_text = {
enabled = false,
},
},
},
}

View file

@ -0,0 +1,6 @@
return {
{
'cohama/lexima.vim',
event = 'DeferredUIEnter',
},
}