Fixes from work
This commit is contained in:
parent
ab6b28e67c
commit
8505010d1e
4 changed files with 10 additions and 5 deletions
1
.bashrc
1
.bashrc
|
|
@ -9,6 +9,7 @@ BLOCKSIZE=K; export BLOCKSIZE
|
|||
EDITOR=vim; export EDITOR
|
||||
PAGER=less; export PAGER
|
||||
|
||||
#Foo
|
||||
# set ENV to a file invoked each time sh is started for interactive use.
|
||||
ENV=$HOME/.bashrc; export ENV
|
||||
|
||||
|
|
|
|||
2
.gvimrc
2
.gvimrc
|
|
@ -1,7 +1,7 @@
|
|||
winsize 115 45
|
||||
"set expandtab
|
||||
"set guifont=DejaVu\ Sans\ Mono:h15.00
|
||||
set guifont=Inconsolata:h18.00
|
||||
set guifont=Inconsolata\ 14
|
||||
set guioptions-=L
|
||||
|
||||
if has("gui_macvim")
|
||||
|
|
|
|||
4
.npmrc
4
.npmrc
|
|
@ -1,2 +1,2 @@
|
|||
root =/Users/barak/.node_libraries
|
||||
binroot=/Users/barak/bin
|
||||
root = /home/barakmich/.node_libraries
|
||||
binroot = /home/barakmich/.node_libraries/bin
|
||||
|
|
|
|||
8
.vimrc
8
.vimrc
|
|
@ -103,7 +103,8 @@ au BufEnter *.org call org#SetOrgFileType()
|
|||
nmap gt :NERDTreeToggle<CR>
|
||||
nmap gT :TlistToggle<CR>
|
||||
"nnoremap gx :Kwbd<CR>
|
||||
nnoremap gc :bdelete<CR>
|
||||
nnoremap gc :Kwbd<CR>
|
||||
"nnoremap gc :bdelete<CR>
|
||||
nnoremap gK :bdelete!<CR>
|
||||
nnoremap gn :bn<CR>
|
||||
nnoremap gp :bp<CR>
|
||||
|
|
@ -225,7 +226,9 @@ augroup QFixToggle
|
|||
autocmd BufWinLeave * if exists("g:qfix_win") && expand("<abuf>") == g:qfix_win | unlet! g:qfix_win | endif
|
||||
augroup END
|
||||
|
||||
nnoremap <Leader>qf :QFix<CR>
|
||||
nnoremap <Leader>ff :QFix<CR>
|
||||
nnoremap <Leader>fn :cnext<CR>
|
||||
nnoremap <Leader>fp :cprev<CR>
|
||||
nnoremap <Leader>aw :AckWord<CR>
|
||||
nnoremap <Leader>ac :Ack
|
||||
nnoremap <Leader>hh :A<CR>
|
||||
|
|
@ -274,6 +277,7 @@ if g:google != 0
|
|||
" Configure a 'Comments' command to import CL code review comments into the
|
||||
" quickfix buffer.
|
||||
command! Comments cexpr system('git5 comments -q -u')
|
||||
command! Lint cexpr system('git5 lint -q')
|
||||
endif
|
||||
|
||||
if filereadable("/home/build/nonconf/google3/tools/tags/gtags.vim")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue