add taglist plugin
This commit is contained in:
parent
ec83ee4522
commit
556d186021
1 changed files with 3 additions and 10 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue