font size, hostname test
This commit is contained in:
parent
1a4931ebff
commit
af701ff931
@ -44,8 +44,8 @@ touch ~/.fish.local
|
|||||||
echo 'set -x VIRTUAL_ENV_DISABLE_PROMPT 1' > ~/.config/fish/config.fish
|
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 theme_title_use_abbreviated_path no' >> ~/.config/fish/config.fish
|
||||||
echo 'set -g fish_prompt_pwd_dir_length 0' >> ~/.config/fish/config.fish
|
echo 'set -g fish_prompt_pwd_dir_length 0' >> ~/.config/fish/config.fish
|
||||||
if [ `hostname` != 'tuonela' ]; then
|
#if [ `hostname` != 'tuonela' ]; then
|
||||||
echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish
|
# echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish
|
||||||
fi
|
#fi
|
||||||
echo 'source ~/.fish.local' >> ~/.config/fish/config.fish
|
echo 'source ~/.fish.local' >> ~/.config/fish/config.fish
|
||||||
touch ~/.hushlogin
|
touch ~/.hushlogin
|
||||||
|
@ -46,10 +46,12 @@ au BufRead,BufNewFile *.pp
|
|||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
call plug#begin('~/.config/vim-plugins')
|
call plug#begin('~/.config/vim-plugins')
|
||||||
|
Plug 'mileszs/ack.vim'
|
||||||
Plug 'godlygeek/tabular'
|
Plug 'godlygeek/tabular'
|
||||||
Plug 'rodjek/vim-puppet'
|
Plug 'rodjek/vim-puppet'
|
||||||
Plug 'ctrlpvim/ctrlp.vim'
|
Plug 'ctrlpvim/ctrlp.vim'
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
|
Plug 'scrooloose/nerdtree'
|
||||||
Plug 'scrooloose/syntastic'
|
Plug 'scrooloose/syntastic'
|
||||||
Plug 'edkolev/tmuxline.vim'
|
Plug 'edkolev/tmuxline.vim'
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
@ -68,9 +70,10 @@ if has("gui_running")
|
|||||||
set guioptions-=e
|
set guioptions-=e
|
||||||
set guioptions-=r
|
set guioptions-=r
|
||||||
set guioptions-=L
|
set guioptions-=L
|
||||||
set guifont=Hack:h14
|
set guifont=Hack:h13
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
cnoreabbrev Ack Ack!
|
||||||
let vim_markdown_preview_github=1
|
let vim_markdown_preview_github=1
|
||||||
let g:syntastic_auto_jump = 1
|
let g:syntastic_auto_jump = 1
|
||||||
let g:syntastic_enable_signs = 1
|
let g:syntastic_enable_signs = 1
|
||||||
@ -121,3 +124,7 @@ endfunction
|
|||||||
function! LightLineFugitive()
|
function! LightLineFugitive()
|
||||||
return exists('*fugitive#head') ? fugitive#head() : ''
|
return exists('*fugitive#head') ? fugitive#head() : ''
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
if executable('ag')
|
||||||
|
let g:ackprg = 'ag --vimgrep'
|
||||||
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user