Merge branch 'master' of git.nixy.moe:nixy/dotfiles

This commit is contained in:
2019-12-15 17:25:20 -05:00
18 changed files with 26 additions and 13 deletions

3
.gitmodules vendored
View File

@@ -40,3 +40,6 @@
[submodule "vim/.vim/bundle/vinegar"] [submodule "vim/.vim/bundle/vinegar"]
path = vim/.vim/bundle/vinegar path = vim/.vim/bundle/vinegar
url = https://github.com/tpope/vim-vinegar url = https://github.com/tpope/vim-vinegar
[submodule "vim/.vim/bundle/direnv"]
path = vim/.vim/bundle/direnv
url = https://github.com/direnv/direnv.vim.git

View File

@@ -55,3 +55,7 @@ fi
if [ -f "$HOME/.private_functions" ] && [ -r "$HOME/.private_functions" ]; then if [ -f "$HOME/.private_functions" ] && [ -r "$HOME/.private_functions" ]; then
. "$HOME/.private_functions" . "$HOME/.private_functions"
fi fi
if $(which direnv &> /dev/null); then
eval "$(direnv hook bash)"
fi

View File

@@ -36,3 +36,7 @@ fi
export HISTSIZE=5000 export HISTSIZE=5000
export HISTFILE="$HOME/.history/sh" export HISTFILE="$HOME/.history/sh"
export HISTFILESIZE=10000 export HISTFILESIZE=10000
if [ -r "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
. "$HOME/.nix-profile/etc/profile.d/nix.sh"
fi

View File

@@ -32,6 +32,7 @@ set nocompatible
" Colors and syntax highlighting " " Colors and syntax highlighting "
colorscheme peachpuff colorscheme peachpuff
set background=dark
filetype plugin on filetype plugin on
syntax on syntax on