Compare commits

...

3 commits

Author SHA1 Message Date
87773b7309
Update vim-airline-themes 2022-11-10 13:52:07 -06:00
5bcf618c0b
Ensure .cargo/env is present
Simply because ~/.cargo exists doesn't mean rustup is present.
2022-11-10 13:50:51 -06:00
e0a14e8603
Don't have conflicting config options
Oops 😅
2022-11-10 13:44:49 -06:00
3 changed files with 5 additions and 4 deletions

@ -1 +1 @@
Subproject commit 55bad92d246a31e3425dfaf16b7eec657eab1fad
Subproject commit dd81554c2231e438f6d0e8056ea38fd0e80ac02a

5
vimrc
View file

@ -7,9 +7,10 @@ set backspace=indent,eol,start
" two-spaced tabs
set tabstop=2
set softtabstop=0 noexpandtab
set softtabstop=0
set shiftwidth=2
set tabstop=2 softtabstop=0 expandtab shiftwidth=2 smarttab
set noexpandtab
set smarttab
" custom filetypes
autocmd BufNewFile,BufRead *.plist set syntax=xml

2
zshrc
View file

@ -103,7 +103,7 @@ if [ -d /nix ]; then
fi
# Rust
if [ -d $HOME/.cargo ]; then
if [ -d $HOME/.cargo/env ]; then
source $HOME/.cargo/env
fi