aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-06-07 16:39:18 -0400
committerBenjamin Linskey2026-06-07 16:39:18 -0400
commitdcf87860fb0d5dc60263f5961c58debb35ffd410 (patch)
tree44a625b8001d3bb0e7fe3a0778bec7cf91f56630
parent9360b065b2525549c59da6a9b045b8e894cd7adb (diff)
downloaddotfiles-dcf87860fb0d5dc60263f5961c58debb35ffd410.tar.gz

vim: Switch color scheme to halation.vim

-rw-r--r--.vimrc3
-rwxr-xr-xinstall.sh2
2 files changed, 3 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc
index f5340f6..f624dd3 100644
--- a/.vimrc
+++ b/.vimrc
@@ -16,7 +16,8 @@ silent! packadd! comment " Vim 9.1.?
runtime! ftplugin/man.vim
silent! syntax enable
-color btl
+set termguicolors
+color halation
set shortmess+=I " No intro message on startup.
set encoding=utf-8
diff --git a/install.sh b/install.sh
index 23e98af..e314f56 100755
--- a/install.sh
+++ b/install.sh
@@ -56,7 +56,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/btl.vim/
+ clone_plugin https://git.linskey.org/halation.vim/
# Regenerate Vim help tags.
vim -e -s -u NONE -c 'helptags ALL' -c q;