Dan Buch 6 years ago
parent 8d55f051bb
commit 9dbf117e7b
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

@ -12,7 +12,7 @@ show_program_path=1
highlight_base_name=1
highlight_megabytes=1
highlight_threads=1
tree_view=0
tree_view=1
header_margin=1
detailed_cpu_time=1
cpu_count_from_zero=0

@ -14,6 +14,7 @@ set hlsearch
set ignorecase
set incsearch
set laststatus=2
set linebreak
set nowrap
set number
set smartcase
@ -24,12 +25,15 @@ map ,t :w<CR>
map ,- :nohl<CR>
map ,w :%s/ *$//<CR>
let g:go_fmt_command = "goimports"
let g:airline_powerline_fonts = 1
let g:go_fmt_command = "goimports"
let g:python_highlight_all = 1
let g:rustfmt_autosave = 1
let g:terraform_align = 1
let g:terraform_fmt_on_save = 1
let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_frontmatter = 1
call pathogen#infect()
colo gotham256
colo dracula

@ -1,5 +1,5 @@
ZSH=$HOME/.oh-my-zsh
ZSH_THEME=meatballhat
ZSH_THEME=dracula
CASE_SENSITIVE="true"
@ -28,6 +28,7 @@ COMPLETION_WAITING_DOTS="true"
# DISABLE_UNTRACKED_FILES_DIRTY="true"
plugins=(
archlinux
autoenv
aws
bundler
@ -112,7 +113,7 @@ if [[ -f ~/.cargo/env ]]; then
source ~/.cargo/env
fi
eval "$(gimme '1.9.3')" 2>/dev/null
eval "$(gimme '1.10.3')" 2>/dev/null
export GOPATH="$HOME/go"
CDPATH="$HOME/code:$HOME/src:$HOME/Development/src:$HOME/repos"

Loading…
Cancel
Save