Compare commits

..

No commits in common. "87773b73093a746e336d9e70b2dcf835fc1af181" and "cfa03e9eea189e091f07d8bfce43a388011362f2" have entirely different histories.

3 changed files with 4 additions and 5 deletions

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

5
vimrc
View file

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

2
zshrc
View file

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