diff --git a/config.fish b/config.fish index 5acdd1e..98d95c7 100644 --- a/config.fish +++ b/config.fish @@ -7,6 +7,7 @@ set -x EDITOR "vim" set -x TERM "screen-256color" # TODO fix this for linux set -x BROWSER "open" +alias browser "eval $BROWSER" set -x MOSH_TITLE_NOPREFIX 1 # PATH diff --git a/vimrc b/vimrc index 1f6436b..613cac7 100644 --- a/vimrc +++ b/vimrc @@ -60,6 +60,7 @@ Bundle 'tpope/vim-vinegar' Bundle 'itchyny/calendar.vim' Bundle 'lfilho/cosco.vim' Bundle 'ntpeters/vim-better-whitespace' +Bundle "sdanielf/vim-stdtabs" let $GIT_SSL_NO_VERIFY = 'true' @@ -279,3 +280,6 @@ nnoremap d :Dict " Cosco autocmd FileType javascript,css nnoremap ,; :call cosco#commaOrSemiColon() autocmd FileType javascript,css inoremap ,; :call cosco#commaOrSemiColon()"a + +" Browser +:let g:netrw_browsex_viewer = "browser"