This commit is contained in:
Christoph J. Scherr 2023-06-16 22:58:38 +02:00
parent e8adf62e21
commit 850f2cf5a3
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
3 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,4 @@
set laststatus=0 "disable statusline
color carbonfox " set colors
set guifont=NotoMono:h9 " set font
" get some plugins, including firenvim itself.
call plug#begin()
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
@ -9,3 +6,6 @@ Plug 'jiangmiao/auto-pairs'
Plug 'psliwka/vim-smoothie' " scorll with STRG + d or STRG + u
Plug 'EdenEast/nightfox.nvim' " Vim-Plug
call plug#end()
color carbonfox " set colors
set guifont=NotoMono:h9 " set font

View File

@ -1,11 +1,11 @@
" always load these.
runtime common.vim
" check if firenvim is accessing this, load it's specific configs if so.
lua << EOF
if vim.g.started_by_firenvim == true then
vim.cmd('runtime firenvim.vim')
vim.cmd('runtime common.vim')
else
vim.cmd('runtime common.vim')
vim.cmd('runtime main.vim')
end
EOF

View File

@ -20,7 +20,7 @@ set completeopt=menuone,noinsert,noselect
set completeopt=menuone,noinsert,noselect
call plug#begin()
Plug 'lambdalisue/suda.vim'
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
Plug 'jiangmiao/auto-pairs'
Plug 'mhinz/vim-startify'
Plug 'neoclide/coc.nvim', {'branch': 'release'}