1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 05:45:11 +01:00

Move Leader key config so it gets picked up correctly by plugins

This commit is contained in:
2017-11-03 14:05:34 +01:00
parent aa1cefc78e
commit a829db3042

5
.vimrc
View File

@@ -6,6 +6,9 @@
set shell=/bin/bash
" change the <Leader> key from \ to ,
let mapleader=","
" Vundle manages the plugins
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
@@ -280,8 +283,6 @@ set list
set dictionary+=/usr/share/dict/words
" use ctrl-n ctrl-n instead of ctrl-x ctrl-k
set complete-=k complete+=k
" change the <Leader> key from \ to ,
let mapleader=","
" Quickly edit/reload the vimrc file
nmap <silent> <leader>ev :e $MYVIMRC<CR>
nmap <silent> <leader>sv :so $MYVIMRC<CR>