-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
223 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) | |
\| endif | ||
|
||
" ================ Load vim plugins =================================== | ||
call plug#begin() | ||
call plug#begin('~/.vim/plugged') | ||
|
||
Plug 'majutsushi/tagbar' | ||
Plug 'Lokaltog/vim-easymotion' | ||
|
@@ -224,15 +224,6 @@ nnoremap <C-h> <C-w>h | |
nnoremap <C-j> <C-w>j | ||
nnoremap <C-k> <C-w>k | ||
nnoremap <C-l> <C-w>l | ||
" ================ Abbreviations ================================ | ||
|
||
" These work in Insert Mode and are just like TextExpander Snippets. | ||
|
||
augroup abbreviations | ||
autocmd! | ||
autocmd FileType * :inoreabbrev eml [email protected] | ||
autocmd FileType * :inoreabbrev weml [email protected] | ||
augroup END | ||
|
||
" ================ Window Settings ============================== | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
# initialize homebrew | ||
# macOS $HOME dir custom install | ||
if [ -d "$HOME/homebrew" ]; then | ||
eval "$($HOME/homebrew/bin/brew shellenv)" | ||
# Put asdf before homebrew in $PATH when homebrew is in $HOME/homebrew | ||
. $HOME/.asdf/asdf.sh | ||
# linuxbrew install | ||
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | ||
# Put asdf before homebrew in $PATH on linuxbrew | ||
. $HOME/.asdf/asdf.sh | ||
# standard macOS install | ||
else | ||
eval "$(/opt/homebrew/bin/brew shellenv)" | ||
if [[ "$(uname -s)" == "Darwin" ]]; then | ||
# macOS $HOME dir custom install | ||
if [ -d "$HOME/homebrew" ]; then | ||
eval "$($HOME/homebrew/bin/brew shellenv)" | ||
# Put asdf before homebrew in $PATH when homebrew is in $HOME/homebrew | ||
. $HOME/.asdf/asdf.sh | ||
# standard macOS install | ||
else | ||
eval "$(/opt/homebrew/bin/brew shellenv)" | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export PATH="$PATH:$HOME/.cargo/bin" |
Oops, something went wrong.