This commit is contained in:
Daniel Flanagan 2017-02-20 18:31:28 -06:00
parent 12747759af
commit 30bd043a8d
3 changed files with 14 additions and 0 deletions

View File

@ -2,6 +2,9 @@
# bashrc is executed when a bash process starts
# these are all paths used across all the dotfiles and should be assumed to be
# loaded and properly set by every script - this means you are responsible for
# making sure they're loaded!
export XDG_CONFIG_HOME="$HOME/.config"
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
export NICE_HOME="$HOME/.."
@ -17,6 +20,8 @@ BASE16_SHELL="$DOTFILES_PATH/common/colors/shell"
# disable ctrl-s terminal freeze
[[ $- == *i* ]] && stty -ixon
source "$DOTFILES_PATH/shell/paths"
# import our aliases
source "$DOTFILES_PATH/shell/aliases"
@ -52,3 +57,5 @@ fi
if [ "$PWD" = "$HOME" ]; then
cd "$NICE_HOME"
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash

6
shell/paths Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
export GOPATH="$HOME/.go"
# PATH=$PATH:$APPENDED_PATH
PATH=$PATH:${GOPATH//://bin:}/bin

View File

@ -103,6 +103,7 @@ let g:fzf_layout = { 'window': 'enew' }
Plug 'kchmck/vim-coffee-script', {'for': ['coffee', 'coffeescript', 'vue']}
Plug 'posva/vim-vue', {'for': ['vue']}
Plug 'elixir-lang/vim-elixir', {'for': ['elixir']}
Plug 'mattn/emmet-vim', {'for': ['html']}
Plug 'wavded/vim-stylus', {'for': ['styl', 'stylus', 'vue']}
Plug 'rust-lang/rust.vim', {'for': ['rs', 'rust']}
" Plug 'plasticboy/vim-markdown', {'for': ['md', 'markdown']}