aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-06-01 05:24:25 -0400
committerBenjamin Linskey2026-06-01 20:37:57 -0400
commit6949fba6262701c53ecb06190999b67ac823c979 (patch)
treed11d1eede27ab9e9856e0e40e5960f67b9cd0e6a
parent827d67146f2835312c92afa5c2412be99f8ff475 (diff)
downloaddotfiles-6949fba6262701c53ecb06190999b67ac823c979.tar.gz

Switch to my custom color scheme

-rw-r--r--.vimrc4
-rwxr-xr-xinstall.sh2
2 files changed, 2 insertions, 4 deletions
diff --git a/.vimrc b/.vimrc
index 4c385b4..600d3a6 100644
--- a/.vimrc
+++ b/.vimrc
@@ -16,9 +16,7 @@ silent! packadd! comment " Vim 9.1.?
runtime! ftplugin/man.vim
silent! syntax enable
-set background=dark
-set termguicolors
-silent! colorscheme iceberg
+color btl
set shortmess+=I " No intro message on startup.
set encoding=utf-8
diff --git a/install.sh b/install.sh
index e3a084d..e00735e 100755
--- a/install.sh
+++ b/install.sh
@@ -44,7 +44,7 @@ if command -v vim >/dev/null; then
mkdir -p "$VIM_REPO_DIR" "$VIM_PLUGS"
clone_plugin https://git.linskey.org/ale/
clone_plugin https://git.linskey.org/ctrlp.vim/
- clone_plugin https://git.linskey.org/iceberg.vim/ btl/main
+ clone_plugin https://git.linskey.org/btl.vim/
# Regenerate Vim help tags.
vim -e -s -u NONE -c 'helptags ALL' -c q;