add: vim plug
This commit is contained in:
parent
461bf041c3
commit
7c5ca2f71e
3 changed files with 2599 additions and 3 deletions
.config/vim
29
.config/vim/vimrc
Normal file
29
.config/vim/vimrc
Normal file
|
@ -0,0 +1,29 @@
|
|||
set runtimepath+=~/.config/vim,~/.config/vim/after
|
||||
set viminfo+=n~/.cache/viminfo
|
||||
|
||||
set number relativenumber
|
||||
|
||||
augroup numbertoggle
|
||||
autocmd!
|
||||
autocmd WinEnter * set relativenumber
|
||||
autocmd WinLeave * set norelativenumber
|
||||
augroup END
|
||||
|
||||
syntax on
|
||||
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set expandtab
|
||||
|
||||
set encoding=utf-8
|
||||
|
||||
set nowrap
|
||||
|
||||
" Save cursor position. I don't understand this part :)
|
||||
if has("autocmd")
|
||||
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif
|
||||
endif
|
||||
|
||||
call plug#begin('~/.config/vim/plugged')
|
||||
Plug 'https://github.com/editorconfig/editorconfig-vim.git'
|
||||
call plug#end()
|
Loading…
Add table
Add a link
Reference in a new issue