firenvim
This commit is contained in:
parent
e8adf62e21
commit
850f2cf5a3
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'}
|
||||
|
|
Loading…
Reference in New Issue