124 lines
3.1 KiB
VimL
124 lines
3.1 KiB
VimL
" This section is for vundle
|
|
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
" alternatively, pass a path where Vundle should install plugins
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
" let Vundle manage Vundle, required
|
|
"Plugin 'Valloric/YouCompleteMe'
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
Plugin 'jreybert/vimagit'
|
|
Plugin 'sbdchd/vim-run'
|
|
Plugin 'scrooloose/nerdtree'
|
|
"Plugin 'takac/vim-hardtime'
|
|
|
|
" All of your Plugins must be added before the following line
|
|
call vundle#end() " required
|
|
filetype plugin indent on " required
|
|
" To ignore plugin indent changes, instead use:
|
|
"filetype plugin on
|
|
"
|
|
" Brief help
|
|
" :PluginList - lists configured plugins
|
|
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
|
|
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
|
|
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
|
|
"
|
|
" see :h vundle for more details or wiki for FAQ
|
|
" Put your non-Plugin stuff after this line
|
|
|
|
|
|
|
|
" Get the defaults that most users want.
|
|
source $VIMRUNTIME/defaults.vim
|
|
|
|
if has("vms")
|
|
set nobackup " do not keep a backup file, use versions instead
|
|
else
|
|
set backup " keep a backup file (restore to previous version)
|
|
if has('persistent_undo')
|
|
set undofile " keep an undo file (undo changes after closing)
|
|
endif
|
|
endif
|
|
|
|
if &t_Co > 2 || has("gui_running")
|
|
" Switch on highlighting the last used search pattern.
|
|
set hlsearch
|
|
endif
|
|
|
|
" Only do this part when compiled with support for autocommands.
|
|
if has("autocmd")
|
|
|
|
" Put these in an autocmd group, so that we can delete them easily.
|
|
augroup vimrcEx
|
|
au!
|
|
|
|
" For all text files set 'textwidth' to 78 characters.
|
|
autocmd FileType text setlocal textwidth=78
|
|
|
|
augroup END
|
|
|
|
else
|
|
|
|
set autoindent " always set autoindenting on
|
|
|
|
endif " has("autocmd")
|
|
|
|
" Add optional packages.
|
|
"
|
|
" The matchit plugin makes the % command work better, but it is not backwards
|
|
" compatible.
|
|
" The ! means the package won't be loaded right away but when plugins are
|
|
" loaded during initialization.
|
|
"if has('syntax') && has('eval')
|
|
" packadd! matchit
|
|
"endif
|
|
|
|
" -- by osh --
|
|
map <C-n> :NERDTreeToggle<CR>
|
|
map <C-m> :Magit<CR>
|
|
|
|
" navigate in splitted buffers
|
|
nnoremap <C-J> <C-W><C-J>
|
|
nnoremap <C-K> <C-W><C-K>
|
|
nnoremap <C-L> <C-W><C-L>
|
|
nnoremap <C-H> <C-W><C-H>
|
|
|
|
" swap lines
|
|
nnoremap <S-j> :m .+1<CR>==
|
|
nnoremap <S-k> :m .-2<CR>==
|
|
vnoremap <S-j> :m '>+1<CR>gv=gv
|
|
vnoremap <S-k> :m '<-2<CR>gv=gv
|
|
|
|
set splitbelow
|
|
set splitright
|
|
|
|
set number relativenumber
|
|
augroup numbertoggle
|
|
autocmd!
|
|
autocmd BufEnter,FocusGained,InsertLeave * set relativenumber
|
|
autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
|
|
augroup END
|
|
|
|
set tabstop=2 shiftwidth=2 expandtab
|
|
set visualbell
|
|
|
|
set complete+=kspell
|
|
|
|
autocmd FileType markdown setlocal spell
|
|
autocmd FileType gitcommit setlocal spell textwidth=72
|
|
"hi SpellBad cterm=underline ctermfg=red
|
|
|
|
" cursor shapes
|
|
let &t_SI = "\<Esc>[6 q"
|
|
let &t_SR = "\<Esc>[4 q"
|
|
let &t_EI = "\<Esc>[2 q"
|
|
|
|
" exec current file
|
|
nnoremap <F6> :Run<CR>
|
|
nnoremap <F7> :make<CR>
|
|
|