aboutsummaryrefslogtreecommitdiff
path: root/.vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vim/vimrc')
-rw-r--r--.vim/vimrc34
1 files changed, 17 insertions, 17 deletions
diff --git a/.vim/vimrc b/.vim/vimrc
index 0857bcf..e371a82 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -8,33 +8,33 @@ set vb
set t_vb=
"Search in all of the project tree
-set path+=**
+"set path+=**
set wildmenu
-set ttimeoutlen=10
-let g:airline#extensions#tabline#enabled = 1
-let g:airline#extensions#branch#enabled = 1
-let g:airline#extensions#whitespace#enabled = 1
-let g:airline_powerline_fonts = 1
+"set ttimeoutlen=10
+"let g:airline#extensions#tabline#enabled = 1
+"let g:airline#extensions#branch#enabled = 1
+"let g:airline#extensions#whitespace#enabled = 1
+"let g:airline_powerline_fonts = 1
"show line endings and tabs
set list
" Use todo#Complete as the omni complete function for todo files
-au filetype todo setlocal omnifunc=todo#Complete
-
-" Auto complete projects
-au filetype todo imap <buffer> + +<C-X><C-O>
-
-" Auto complete contexts
-au filetype todo imap <buffer> @ @<C-X><C-O>
+"au filetype todo setlocal omnifunc=todo#Complete
+"
+"" Auto complete projects
+"au filetype todo imap <buffer> + +<C-X><C-O>
+"
+"" Auto complete contexts
+"au filetype todo imap <buffer> @ @<C-X><C-O>
" leader
let mapleader = "-"
let leader = "-"
let maplocalleader = "-"
-execute pathogen#infect()
+"execute pathogen#infect()
syntax on
filetype plugin indent on
@@ -64,8 +64,8 @@ au filetype c* nmap <silent> <F8> :make<CR>
au filetype sh nmap <silent> <F8> :Runbuffer<CR>
au filetype python nmap <silent> <F8> :Runbuffer<CR>
-nmap <silent> <F5> :NERDTreeToggle<CR>
-nmap <silent> <F6> :TlistToggle<CR>
+"nmap <silent> <F5> :NERDTreeToggle<CR>
+"nmap <silent> <F6> :TlistToggle<CR>
nmap <silent> <F7> :Newterm<CR>
"Tab mgmt
@@ -91,7 +91,7 @@ command -bar Suw :w !SUDO_ASKPASS="/usr/lib/ssh/ssh-askpass" sudo -A tee %
command -bar Hexmode call ToggleHex()
"^] Jump to tag, ^t jump back
-command! MakeTags !ctags -R .
+"command! MakeTags !ctags -R .
command -bar Newterm call Create_term()
command -bar Runbuffer call Run_buffer()