Kaynağa Gözat

Update vimrc after removing plugin

Andrew Swistak 11 yıl önce
ebeveyn
işleme
b9eee1afaa
1 değiştirilmiş dosya ile 3 ekleme ve 15 silme
  1. 3 15
      vimrc

+ 3 - 15
vimrc

@@ -173,12 +173,6 @@ let g:UltiSnipsExpandTrigger = "<A-c>"
 let g:UltiSnipsJumpForwardTrigger = "<A-w>"
 let g:UltiSnipsJumpBackwardTrigger = "<A-s>"
 
-"""""""""""""""""""""""""""""""""""""""""
-" TagList
-"""""""""""""""""""""""""""""""""""""""""
-
-nnoremap <leader>t :TlistToggle<CR>
-
 """""""""""""""""""""""""""""""""""""""""
 " Easytags
 """""""""""""""""""""""""""""""""""""""""
@@ -199,9 +193,9 @@ autocmd FileType tex setlocal spell spelllang=en_us
 
 syntax enable
 "Set 256 color mode (not always needed).
-"if $TERM == "xterm-256color" || $TERM == "screen-256color" || $COLORTERM == "gnome-terminal"
-"	set t_Co=256
-"endif
+if $TERM == "xterm-256color" || $TERM == "screen-256color" || $COLORTERM == "xfce4-terminal"
+  set t_Co=256
+endif
 
 " Use a nice color scheme
 colors Monokai
@@ -210,12 +204,6 @@ colors Monokai
 " Useful Stuff
 """"""""""""""""""""""""""""""""""""""""
 
-" Return to last edit position on reopen
-"autocmd BufReadPost *
-      "\ if line("'\"") > 0 && line("'\"") <= line("$") |
-      "\   exe "normal! g`\"" |
-      "\ endif
-
 " Delete trailing whitespaces on saving.
 func! DeleteTrailingWS()
   exe "normal mz"