font size, hostname test

This commit is contained in:
Bartek Stalewski 2017-08-23 12:35:42 +02:00
parent 1a4931ebff
commit af701ff931
2 changed files with 11 additions and 4 deletions

View File

@ -44,8 +44,8 @@ touch ~/.fish.local
echo 'set -x VIRTUAL_ENV_DISABLE_PROMPT 1' > ~/.config/fish/config.fish
echo 'set -g theme_title_use_abbreviated_path no' >> ~/.config/fish/config.fish
echo 'set -g fish_prompt_pwd_dir_length 0' >> ~/.config/fish/config.fish
if [ `hostname` != 'tuonela' ]; then
echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish
fi
#if [ `hostname` != 'tuonela' ]; then
# echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish
#fi
echo 'source ~/.fish.local' >> ~/.config/fish/config.fish
touch ~/.hushlogin

View File

@ -46,10 +46,12 @@ au BufRead,BufNewFile *.pp
filetype plugin indent on
call plug#begin('~/.config/vim-plugins')
Plug 'mileszs/ack.vim'
Plug 'godlygeek/tabular'
Plug 'rodjek/vim-puppet'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'tpope/vim-fugitive'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/syntastic'
Plug 'edkolev/tmuxline.vim'
Plug 'itchyny/lightline.vim'
@ -68,9 +70,10 @@ if has("gui_running")
set guioptions-=e
set guioptions-=r
set guioptions-=L
set guifont=Hack:h14
set guifont=Hack:h13
endif
cnoreabbrev Ack Ack!
let vim_markdown_preview_github=1
let g:syntastic_auto_jump = 1
let g:syntastic_enable_signs = 1
@ -121,3 +124,7 @@ endfunction
function! LightLineFugitive()
return exists('*fugitive#head') ? fugitive#head() : ''
endfunction
if executable('ag')
let g:ackprg = 'ag --vimgrep'
endif