1
0
Fork 0
mirror of synced 2024-11-26 10:45:35 -05:00

add taglist plugin

This commit is contained in:
longlinht 2016-06-25 16:28:23 +08:00
parent ec83ee4522
commit 556d186021

View file

@ -46,9 +46,6 @@
" Sets how many lines of history VIM has to remember " Sets how many lines of history VIM has to remember
set history=500 set history=500
" Sets line number
set number
" Enable filetype plugins " Enable filetype plugins
filetype plugin on filetype plugin on
filetype indent on filetype indent on
@ -58,8 +55,8 @@ set autoread
" With a map leader it's possible to do extra key combinations " With a map leader it's possible to do extra key combinations
" like <leader>w saves the current file " like <leader>w saves the current file
let mapleader = ";" let mapleader = ","
let g:mapleader = ";" let g:mapleader = ","
" Fast saving " Fast saving
nmap <leader>w :w!<cr> nmap <leader>w :w!<cr>
@ -145,7 +142,7 @@ set foldcolumn=1
syntax enable syntax enable
try try
colorscheme peaksea colorscheme desert
catch catch
endtry endtry
@ -363,10 +360,6 @@ map <leader>x :e ~/buffer.md<cr>
" Toggle paste mode on and off " Toggle paste mode on and off
map <leader>pp :setlocal paste!<cr> map <leader>pp :setlocal paste!<cr>
" Ctrl-x for cut
vmap <C-x> :!pbcopy<cr>
" Ctrl-c for copy
vmap <C-c> :w !pbcopy<cr><cr>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Helper functions " => Helper functions