1
0
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
Vivianne 16b01836a7 Fix suda cond case 2022-03-06 11:44:56 -08:00
Vivianne 409729056b Adding working gentoo! 2022-03-06 11:37:35 -08:00
Vivianne ae6e309ec9 Add suda and gentoo syntax! 2022-03-06 10:50:53 -08:00
1 changed files with 15 additions and 1 deletions

View File

@ -25,7 +25,6 @@ return require('packer').startup(function(use)
end
}
use 'bryanmylee/vim-colorscheme-icons'
use {
'akinsho/bufferline.nvim',
config = function()
@ -200,6 +199,21 @@ return require('packer').startup(function(use)
branch = 'release'
}
use 'editorconfig/editorconfig-vim'
use {
'gentoo/gentoo-syntax',
-- Latest version is buggy as hell
tag = 'gentoo-syntax-20220220',
run = 'make PREFIX=~/.local/share/nvim install'
}
use {
'lambdalisue/suda.vim',
config = function()
vim.g.suda_smart_edit = 1
end,
cond = function()
return vim.fn.has('win32') == 0
end
}
end)