adding go-lang

This commit is contained in:
2019-11-06 21:45:44 +01:00
parent d691da4d4a
commit abd572b42f
4 changed files with 5 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ set GPG_TTY /dev/ttys001
# set abbveriations
if status --is-interactive
set -g fish_user_abbreviations
abbr --add wgo 'cd ~/Documents/workspace_go/src'
abbr --add wtm 'cd ~/Documents/workspace_tm'
abbr --add obc 'cd ~/Documents/workspace_tm/obc'
abbr --add tix 'cd ~/Documents/workspace_tm/amadeus_api/'

View File

@@ -33,6 +33,7 @@ SETUVAR _fish_abbr_obc:cd\x20\x7e/Documents/workspace_tm/obc
SETUVAR _fish_abbr_pg__start:pg_ctl\x20\x2dD\x20/usr/local/var/postgresql\x409\x2e5\x20start
SETUVAR _fish_abbr_pg__stop:pg_ctl\x20\x2dD\x20/usr/local/var/postgresql\x409\x2e5\x20stop
SETUVAR _fish_abbr_tix:cd\x20\x7e/Documents/workspace_tm/amadeus_api/
SETUVAR _fish_abbr_wgo:cd\x20\x7e/Documents/workspace_go/src
SETUVAR _fish_abbr_wtm:cd\x20\x7e/Documents/workspace_tm
SETUVAR fish_color_autosuggestion:93a1a1
SETUVAR fish_color_cancel:\x2dr

View File

@@ -5,7 +5,7 @@ _fish_shell="/usr/local/bin/fish"
_homebrew=`which brew`
_to_install="the_silver_searcher imagemagick postgresql@9.5 pgcli rbenv redis ruby-build \
tmux unrar yasm youtube-dl elixir git git-flow vim fish emacs node yarn \
azure-cli octant openssl fzf"
azure-cli octant openssl fzf go"
# Generate symlinks for files
for i in gemrc gitconfig gitignore gvimrc irbrc mongorc.js NERDTreeBookmarks rspec screenrc tmux.conf vimrc rubocop.yml spacemacs

2
vimrc
View File

@@ -55,6 +55,8 @@ Plug 'vim-airline/vim-airline-themes'
" Plug 'w0rp/ale'
" Solalized Theme
Plug 'altercation/vim-colors-solarized'
" Go language
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
" Initialize plugin system
call plug#end()