Browse Source

Fri Dec 30 09:37:56 GMT 2022

Gabriel Capella 1 year ago
parent
commit
1855bc7b64
3 changed files with 21 additions and 7 deletions
  1. 3 3
      dots/.config/fish/config.fish
  2. 13 4
      dots/.config/fish/config.fish.backup
  3. 5 0
      dots/.vimrc

+ 3 - 3
dots/.config/fish/config.fish

@@ -50,11 +50,11 @@ export PATH="/usr/bin/:$PATH" &
 # export SDKBOX_HOME="/Users/gabrielcapella/.sdkbox"
 
 # export PATH="/usr/bin/:$PATH"
-# The next line updates PATH for the Google Cloud SDK.
-if [ -f '/Users/gabrielcapella/.google-cloud-sdk/path.fish.inc' ]; . '/Users/gabrielcapella/.google-cloud-sdk/path.fish.inc'; end
-
 function subl;
 	"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" $argv;
 end
 
 alias pb='curl -s --data-binary @- https://p.capella.pro/ | awk \'{ print "https://p.capella.pro/"$0; }\' | tee /tmp/pb | pbcopy && cat /tmp/pb'
+
+# The next line updates PATH for the Google Cloud SDK.
+if [ -f '/Users/gabrielcapella/Documents/google-cloud-sdk/path.fish.inc' ]; . '/Users/gabrielcapella/Documents/google-cloud-sdk/path.fish.inc'; end

+ 13 - 4
dots/.config/fish/config.fish.backup

@@ -1,11 +1,10 @@
 set fish_greeting "Capella"
-alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"
 
-export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
+export PATH="/usr/local/bin:/bin:/usr/sbin:/sbin"
 export PATH="$PATH:$HOME/.node/bin"
 export PATH="$PATH:$HOME/go/bin"
 
-test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish
+# test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish
 # set -g fish_user_paths "/usr/local/sbin" $fish_user_paths
 # set -g fish_user_paths "/usr/local/opt/gnu-getopt/bin" $fish_user_paths
 
@@ -39,7 +38,9 @@ test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shel
 export ANDROID_SDK_ROOT="/Users/gabrielcapella/Library/Android/sdk"
 export PATH="$ANDROID_SDK_ROOT:$PATH"
 export PATH="$ANDROID_SDK_ROOT/tools:$ANDROID_SDK_ROOT/platform-tools:$PATH"
+export ANDROID_AVD_HOME="$HOME/.android/"
 
+export PATH="/usr/bin/:$PATH" &
 
 # # Add environment variable NDK_ROOT for cocos2d-x
 # export NDK_ROOT="/Users/gabrielcapella/Library/Android/sdk/ndk-bundle/"
@@ -48,4 +49,12 @@ export PATH="$ANDROID_SDK_ROOT/tools:$ANDROID_SDK_ROOT/platform-tools:$PATH"
 # # Add environment variable SDKBOX_HOME for sdkbox installer
 # export SDKBOX_HOME="/Users/gabrielcapella/.sdkbox"
 
-# export PATH="/usr/bin/:$PATH"
+# export PATH="/usr/bin/:$PATH"
+# The next line updates PATH for the Google Cloud SDK.
+if [ -f '/Users/gabrielcapella/.google-cloud-sdk/path.fish.inc' ]; . '/Users/gabrielcapella/.google-cloud-sdk/path.fish.inc'; end
+
+function subl;
+	"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" $argv;
+end
+
+alias pb='curl -s --data-binary @- https://p.capella.pro/ | awk \'{ print "https://p.capella.pro/"$0; }\' | tee /tmp/pb | pbcopy && cat /tmp/pb'

+ 5 - 0
dots/.vimrc

@@ -21,6 +21,9 @@ Plugin 'tpope/vim-surround'
 Plugin 'colors'
 Plugin 'jistr/vim-nerdtree-tabs'
 Plugin 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
+Plugin 'iwonbigbro/vim-hybrid'
+Plugin 'dense-analysis/ale'
+
 
 call vundle#end()
 filetype plugin indent on
@@ -117,6 +120,8 @@ hi LineNr          ctermfg=239 ctermbg=235
 hi NonText         ctermfg=239
 hi SpecialKey      ctermfg=239
 
+colorscheme hybrid
+
 autocmd FileType nerdtree setlocal colorcolumn&
 highlight ColorColumn ctermbg=232 guibg=#2c2d27
 let &colorcolumn="".join(range(81,999),",")