From 4833cf34bc8bc568ccc4af7fdf226031859554da Mon Sep 17 00:00:00 2001 From: Andrew Lorimer Date: Tue, 19 May 2020 16:57:21 +1000 Subject: [PATCH] disable snippets in vim --- vim/.vimrc | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 6b5bfc8..dc71aa1 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -18,7 +18,7 @@ call vundle#begin() Plugin 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required -Plugin 'vim-pandoc/vim-pandoc-syntax' +"Plugin 'vim-pandoc/vim-pandoc-syntax' Plugin 'godlygeek/tabular' "Plugin 'SirVer/ultisnips' "Plugin 'honza/vim-snippets' @@ -28,13 +28,13 @@ call vundle#end() " required filetype plugin indent on " required " UltiSnips configuration -let g:UltiSnipsSnippetDirectories = ['/home/andrew/.snippets'] -let g:UltiSnipsExpandTrigger = '' -let g:UltiSnipsJumpForwardTrigger = '' -let g:UltiSnipsJumpBackwardTrigger = '' -set rtp-=$HOME/.vim -set rtp^=~/.vim/bundle/ultisnips -set rtp+=~/.vim/bundle/ultisnips/after +"let g:UltiSnipsSnippetDirectories = ['/home/andrew/.snippets'] +"let g:UltiSnipsExpandTrigger = '' +"let g:UltiSnipsJumpForwardTrigger = '' +"let g:UltiSnipsJumpBackwardTrigger = '' +"set rtp-=$HOME/.vim +"set rtp^=~/.vim/bundle/ultisnips +"set rtp+=~/.vim/bundle/ultisnips/after set rtp^=$HOME/.vim set vi= filetype plugin on @@ -78,7 +78,7 @@ if exists("+showtabline") let file = fnamemodify(file, ':p:t') endif if file == '' - let file = '[No Name]' + let file = '[new file]' endif let s .= file let i = i + 1 @@ -89,4 +89,3 @@ if exists("+showtabline") endfunction set tabline=%!MyTabLine() endif - -- 2.49.0