vim: strg+p - set paste
This commit is contained in:
parent
8f1483d21b
commit
cb4bdf0084
1 changed files with 4 additions and 1 deletions
5
.vimrc
5
.vimrc
|
@ -71,6 +71,8 @@ set clipboard=unnamedplus " https://unix.stackexchange.com/questions/125
|
|||
nmap <C-s> :w<CR>
|
||||
" ctrl+W zum schließen
|
||||
nmap <C-w> :q<CR>
|
||||
" ctrl+P: set paste
|
||||
nmap <C-p> :set paste!<CR>
|
||||
" leader-key
|
||||
:let mapleader = ","
|
||||
|
||||
|
@ -121,7 +123,8 @@ nmap <C-f> :CtrlP<CR>
|
|||
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " MacOSX/Linux
|
||||
set wildignore+=*\\tmp\\*,*.swp,*.zip,*.exe " Windows
|
||||
let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn)$'
|
||||
|
||||
" stelle standard keybinding um
|
||||
let g:ctrlp_map = ''
|
||||
" vimagit
|
||||
" https://github.com/jreybert/vimagit#mappings
|
||||
nmap <Leader>m :Magit<cr>
|
||||
|
|
Loading…
Reference in a new issue