Added vim config
This commit is contained in:
parent
c2a9598602
commit
fb6694322c
1 changed files with 29 additions and 0 deletions
29
config/.vimrc
Normal file
29
config/.vimrc
Normal file
|
@ -0,0 +1,29 @@
|
|||
"
|
||||
" ~/.vimrc
|
||||
"
|
||||
|
||||
filetype on
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
set expandtab
|
||||
set incsearch
|
||||
set number
|
||||
set showmatch
|
||||
set title
|
||||
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
||||
syntax on
|
||||
|
||||
" PLUGINS --------------------------------------------------------------- {{{
|
||||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'dense-analysis/ale'
|
||||
|
||||
call plug#end()
|
||||
|
||||
" }}}
|
||||
|
||||
if has("autocmd")
|
||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||
endif
|
||||
|
Loading…
Reference in a new issue