Skip to content

Commit

Permalink
Add folder for npm global packages to bash_profile
Browse files Browse the repository at this point in the history
  • Loading branch information
conor-naranjo committed Oct 19, 2021
1 parent da6d224 commit c8c185a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bash/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ PS1=' \[\w $(git_color)$(git_branch)${color_white} \n \$ '

export GOPATH=$HOME/go
export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
export NPM_GLOBAL=$HOME/.npm-global/bin
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin:$NPM_GLOBAL

shopt -s extglob

Expand Down
5 changes: 1 addition & 4 deletions vim/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,9 @@ call matchadd('ColorColumn', '\%81v', 100)
" Highlight the current working line
set cursorline

" Force swap files to go somewhere else >:[
"set directory^=$HOME/.vim/tmp//

" Enable code folding
set foldmethod=indent
set foldlevel=99

" Use spacebar to fold code
nnoremap <space> za
" nnoremap <space> za

0 comments on commit c8c185a

Please sign in to comment.