stuff
This commit is contained in:
parent
12747759af
commit
30bd043a8d
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
# bashrc is executed when a bash process starts
|
# 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 XDG_CONFIG_HOME="$HOME/.config"
|
||||||
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
||||||
export NICE_HOME="$HOME/.."
|
export NICE_HOME="$HOME/.."
|
||||||
|
@ -17,6 +20,8 @@ BASE16_SHELL="$DOTFILES_PATH/common/colors/shell"
|
||||||
# disable ctrl-s terminal freeze
|
# disable ctrl-s terminal freeze
|
||||||
[[ $- == *i* ]] && stty -ixon
|
[[ $- == *i* ]] && stty -ixon
|
||||||
|
|
||||||
|
source "$DOTFILES_PATH/shell/paths"
|
||||||
|
|
||||||
# import our aliases
|
# import our aliases
|
||||||
source "$DOTFILES_PATH/shell/aliases"
|
source "$DOTFILES_PATH/shell/aliases"
|
||||||
|
|
||||||
|
@ -52,3 +57,5 @@ fi
|
||||||
if [ "$PWD" = "$HOME" ]; then
|
if [ "$PWD" = "$HOME" ]; then
|
||||||
cd "$NICE_HOME"
|
cd "$NICE_HOME"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||||
|
|
6
shell/paths
Normal file
6
shell/paths
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
export GOPATH="$HOME/.go"
|
||||||
|
|
||||||
|
# PATH=$PATH:$APPENDED_PATH
|
||||||
|
PATH=$PATH:${GOPATH//://bin:}/bin
|
|
@ -103,6 +103,7 @@ let g:fzf_layout = { 'window': 'enew' }
|
||||||
Plug 'kchmck/vim-coffee-script', {'for': ['coffee', 'coffeescript', 'vue']}
|
Plug 'kchmck/vim-coffee-script', {'for': ['coffee', 'coffeescript', 'vue']}
|
||||||
Plug 'posva/vim-vue', {'for': ['vue']}
|
Plug 'posva/vim-vue', {'for': ['vue']}
|
||||||
Plug 'elixir-lang/vim-elixir', {'for': ['elixir']}
|
Plug 'elixir-lang/vim-elixir', {'for': ['elixir']}
|
||||||
|
Plug 'mattn/emmet-vim', {'for': ['html']}
|
||||||
Plug 'wavded/vim-stylus', {'for': ['styl', 'stylus', 'vue']}
|
Plug 'wavded/vim-stylus', {'for': ['styl', 'stylus', 'vue']}
|
||||||
Plug 'rust-lang/rust.vim', {'for': ['rs', 'rust']}
|
Plug 'rust-lang/rust.vim', {'for': ['rs', 'rust']}
|
||||||
" Plug 'plasticboy/vim-markdown', {'for': ['md', 'markdown']}
|
" Plug 'plasticboy/vim-markdown', {'for': ['md', 'markdown']}
|
||||||
|
|
Reference in a new issue