62 lines
1.1 KiB
VimL
62 lines
1.1 KiB
VimL
set nocompatible " be iMproved, required
|
|
noremap <Space> <Nop>
|
|
map <Space> <Leader>
|
|
let mapleader = "\<Space>"
|
|
let localleader = "\<Space>"
|
|
|
|
" set the runtime path to include plug.com and initialize
|
|
call plug#begin('~/.vim/plugged')
|
|
|
|
"" plug.vim management
|
|
Plug 'junegunn/vim-plug'
|
|
|
|
" Airline statusline
|
|
Plug 'itchyny/lightline.vim'
|
|
|
|
|
|
"" Basic config for vim
|
|
Plug 'tpope/vim-sensible'
|
|
|
|
" Git integration
|
|
Plug 'tpope/vim-fugitive'
|
|
|
|
" Nerdtree
|
|
Plug 'scrooloose/nerdtree'
|
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
|
|
|
|
|
" Change surround
|
|
Plug 'tpope/vim-surround'
|
|
|
|
" Clever substitute
|
|
Plug 'tpope/tpope-vim-abolish'
|
|
|
|
" Repeat
|
|
Plug 'tpope/vim-repeat'
|
|
|
|
" Git on lines
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
" Polyglot synthax hightlight autodetect
|
|
Plug 'sheerun/vim-polyglot'
|
|
|
|
" Show indent lines
|
|
Plug 'Yggdroot/indentLine'
|
|
|
|
" Tmux integration
|
|
Plug 'christoomey/vim-tmux-navigator'
|
|
|
|
"" Color scheme
|
|
Plug 'jnurmine/Zenburn'
|
|
|
|
" All of your Plugs must be added before the following line
|
|
call plug#end() " required
|
|
"
|
|
|
|
" import config from ./config
|
|
" runtime! config/**/*.vim
|
|
"runtime! config/*.vim
|
|
runtime! config/base.vim
|
|
runtime! config/plugins.vim
|
|
set conceallevel=0
|