-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc-basic
35 lines (29 loc) · 913 Bytes
/
.vimrc-basic
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
" This is a basic vimrc file primarily devoted to debugging plugins
let mapleader = ","
set runtimepath=$HOME/.vim-basic
set runtimepath+=$VIM/vimfiles
set runtimepath+=$VIMRUNTIME
set runtimepath+=$VIM/vimfiles/after
set runtimepath+=$HOME/.vim-basic/after
set nocompatible
set shiftwidth=4 softtabstop=4 tabstop=4
set expandtab
set autoindent
nnoremap ; :
nnoremap : ;
xnoremap ; :
xnoremap : ;
inoremap jk <esc>
inoremap <esc> <nop>
inoremap <leader>s <c-o>:w<cr><esc>
nnoremap <leader>s :w<cr>
nnoremap <leader>E :edit ~/.vimrc-basic<cr>
" vim-plug
" https://github.com/junegunn/vim-plug
" Installation:
" curl -fLo ~/.vim-basic/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
call plug#begin('~/.vim-basic/bundle')
let g:plug_url_format = '[email protected]:%s.git'
Plug 'inside/vim-search-pulse'
let g:vim_search_pulse_mode = 'pattern'
call plug#end()