summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vim/bundles.vim4
-rw-r--r--.vimrc8
2 files changed, 8 insertions, 4 deletions
diff --git a/.vim/bundles.vim b/.vim/bundles.vim
index 948dde0..ea70318 100644
--- a/.vim/bundles.vim
+++ b/.vim/bundles.vim
@@ -55,4 +55,8 @@ Bundle 'project.tar.gz'
" GPG
Bundle 'gnupg.vim'
+" Snippet Management
+Bundle 'UltiSnips'
+
+
filetype plugin indent on " required!
diff --git a/.vimrc b/.vimrc
index 112de8c..812f414 100644
--- a/.vimrc
+++ b/.vimrc
@@ -96,16 +96,13 @@ nmap <silent> <Leader>P <Plug>ToggleProject
" others
map <C-Tab> gt
map <C-S-Tab> gT
-imap <S-Tab> <C-X><C-O>
+"imap <S-Tab> <C-X><C-O>
nmap <silent> <F4> :ls<CR>:buf
nmap <Leader>t :ToggleWord<CR>
" Makes more sense and is similar to D
map Y y$
-" emulate C-k as known from emacs/zsh/...
-imap <C-k> <C-o>D
-
" =======================================================
" PLUGINS AND LANGUAGES
" =======================================================
@@ -148,6 +145,9 @@ let g:tex_conceal = ""
" use pipes instead of temp files
let g:GPGUsePipes = 1
+" Ultisnips
+let g:UltiSnipsEditSplit = "vertical"
+
" =======================================================
" FINAL
" =======================================================