Switch to vim by default and add template for plugins
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
6012c3aa57
commit
eb3a1178b6
3 changed files with 2828 additions and 1 deletions
2812
etc/skel/.vim/autoload/plug.vim
Normal file
2812
etc/skel/.vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,6 @@
|
||||||
|
" to use themes, comment out the example themes (Plug and below)
|
||||||
|
" enter vim and type :PlugInstall or :PlugUpdate
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
|
@ -21,6 +24,18 @@ set wmnu
|
||||||
" disable folding
|
" disable folding
|
||||||
set nofoldenable
|
set nofoldenable
|
||||||
|
|
||||||
|
" Specify a directory for plugins
|
||||||
|
" - Avoid using standard Vim directory names like 'plugin'
|
||||||
|
call plug#begin('~/.vim/plugged')
|
||||||
|
"Plug 'chriskempson/base16-vim'
|
||||||
|
"Plug 'dracula/vim', { 'as': 'dracula' }
|
||||||
|
"Plug 'junegunn/vim-easy-align'
|
||||||
|
" Initialize plugin system
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
"colorscheme base16-atelier-forest
|
||||||
|
"colorscheme dracula
|
||||||
|
|
||||||
if has('gui_running')
|
if has('gui_running')
|
||||||
set go=m
|
set go=m
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
# misc
|
# misc
|
||||||
export EDITOR="nano"
|
export EDITOR="vim"
|
||||||
|
|
Loading…
Reference in a new issue