42 lines
753 B
VimL
42 lines
753 B
VimL
|
" to use themes, comment out the example themes (Plug and below)
|
||
|
" enter vim and type :PlugInstall or :PlugUpdate
|
||
|
|
||
|
filetype plugin indent on
|
||
|
syntax on
|
||
|
|
||
|
set ai
|
||
|
set bs=2
|
||
|
set cc=80,120
|
||
|
set fdm=syntax
|
||
|
set formatoptions+=j
|
||
|
"set lcs=tab:\│\ ,trail:·,eol:¬
|
||
|
set ls=2
|
||
|
set nu
|
||
|
set rnu
|
||
|
set ru
|
||
|
set si
|
||
|
set sta
|
||
|
set sw=4
|
||
|
set ts=4
|
||
|
set ttyfast
|
||
|
set udf
|
||
|
set wmnu
|
||
|
" disable folding
|
||
|
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')
|
||
|
set go=m
|
||
|
endif
|