Skip to content

Commit c1add87

Browse files
committed
fix vim colors for real
1 parent 20cc24e commit c1add87

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dotfiles/init.vim

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ endif
123123

124124
" hit the space bar to remove search highlights
125125
nnoremap <space> :noh<cr>
126-
highlight LineNr ctermfg=grey ctermbg=black
127-
highlight Visual cterm=reverse ctermbg=NONE
128-
let g:airline_theme='dark_minimal'
126+
let g:airline_theme='base16_tomorrow'
127+
let base16colorspace=256
128+
set termguicolors

dotfiles/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ readonly WORKSPACE="${HOME}/workspace"
66
readonly GOPATH="${HOME}/go"
77

88
function main() {
9-
chown -R ubuntu:ubuntu "${HOME}"
109
ln -sf "${PROGDIR}/.bash_profile" "${HOME}/.bash_profile"
1110
ln -sf "${PROGDIR}/.gitconfig" "${HOME}/.gitconfig"
1211
ln -sf "${PROGDIR}/.inputrc" "${HOME}/.inputrc"
@@ -28,6 +27,7 @@ function main() {
2827
go get -u github.com/onsi/ginkgo/ginkgo
2928
go get -u github.com/onsi/gomega
3029

30+
chown -R ubuntu:ubuntu "${HOME}"
3131

3232
echo "Success!"
3333
}

0 commit comments

Comments
 (0)