disable snippets in vim
authorAndrew Lorimer <andrew@lorimer.id.au>
Tue, 19 May 2020 06:57:21 +0000 (16:57 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Tue, 19 May 2020 06:57:21 +0000 (16:57 +1000)
vim/.vimrc
index 6b5bfc8a90143b391465339ad0559747e6caeacc..dc71aa15c7f54ba7503aa08e60423d9c5156ae9a 100644 (file)
@@ -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 = '<tab>'
-let g:UltiSnipsJumpForwardTrigger = '<tab>'
-let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
-set rtp-=$HOME/.vim
-set rtp^=~/.vim/bundle/ultisnips
-set rtp+=~/.vim/bundle/ultisnips/after
+"let g:UltiSnipsSnippetDirectories = ['/home/andrew/.snippets']
+"let g:UltiSnipsExpandTrigger = '<tab>'
+"let g:UltiSnipsJumpForwardTrigger = '<tab>'
+"let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
+"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
-