Skip to content

Commit

Permalink
Added argonauts color theme and supression of zsh warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornconnolly committed Jun 21, 2021
1 parent 2f1fdb0 commit 6e68827
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bash/bash_profile.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ export HOSTNAME=$(hostname)
if [ "$PLATFORM" = Darwin ]; then
# Launch the gpg-agent to look for USB keys, also set the SSH auth
# socket to use the GPG provided one
gpgconf --launch gpg-agent
/opt/homebrew/bin/gpgconf --launch gpg-agent
export SSH_AUTH_SOCK=$HOME/.gnupg/S.gpg-agent.ssh
# Include brew bash_completion if installed on the Darwin host
# Mainly for kubectl to get bash_completion not to complain about
# missing funtuib
if [ -f /usr/local/etc/profile.d/bash_completion.sh ]; then
source /usr/local/etc/profile.d/bash_completion.sh
fi
# Disable the annoying reminder that MacOS now uses zsh as default shell
export BASH_SILENCE_DEPRECATION_WARNING=1
fi

. ~/.bashrc
102 changes: 102 additions & 0 deletions vim/argonaut.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
" Vim color file
" Converted from Textmate theme [ Argonaut ] using Coloration v0.2.5 (http://github.com/sickill/coloration)

set background=dark
highlight clear

if exists("syntax_on")
syntax reset
endif

let g:colors_name = "argonaut"

hi Cursor guifg=NONE guibg=#ff2200 gui=NONE
hi Visual guifg=NONE guibg=#002f53 gui=NONE
hi CursorLine guifg=NONE guibg=#000c16 gui=NONE
hi CursorColumn guifg=NONE guibg=#000c16 gui=NONE
hi LineNr guifg=#606268 guibg=#0e111d gui=NONE
hi VertSplit guifg=#2d3039 guibg=#2d3039 gui=NONE
hi MatchParen guifg=#ffffff guibg=NONE gui=bold
hi StatusLine guifg=#b2b2b2 guibg=#2d3039 gui=bold
hi StatusLineNC guifg=#b2b2b2 guibg=#2d3039 gui=NONE
hi Pmenu guifg=NONE guibg=NONE gui=NONE
hi PmenuSel guifg=NONE guibg=#002f53 gui=NONE
hi IncSearch guifg=NONE guibg=#5e6068 gui=NONE
hi Search guifg=NONE guibg=#5e6068 gui=NONE
hi Directory guifg=#a4ed2d guibg=NONE gui=bold
hi Folded guifg=#00a6ff guibg=#0e111d gui=NONE

hi Normal guifg=#b2b2b2 guibg=#0e111d gui=NONE
hi Boolean guifg=#a4ed2d guibg=NONE gui=bold
hi Character guifg=#a4ed2d guibg=NONE gui=bold
hi Comment guifg=#00a6ff guibg=NONE gui=NONE
hi Conditional guifg=#ffffff guibg=NONE gui=bold
hi Constant guifg=#a4ed2d guibg=NONE gui=bold
hi Define guifg=#ffffff guibg=NONE gui=bold
hi ErrorMsg guifg=#ffffff guibg=#990000 gui=NONE
hi WarningMsg guifg=#ffffff guibg=#990000 gui=NONE
hi Float guifg=#d70000 guibg=NONE gui=NONE
hi Function guifg=#ffca00 guibg=NONE gui=bold
hi Identifier guifg=#ffffff guibg=NONE gui=bold
hi Keyword guifg=#ffffff guibg=NONE gui=bold
hi Label guifg=#6497c5 guibg=NONE gui=NONE
hi NonText guifg=#ffb500 guibg=#000c16 gui=NONE
hi Number guifg=#d70000 guibg=NONE gui=NONE
hi Operator guifg=#ffffff guibg=NONE gui=bold
hi PreProc guifg=#ffffff guibg=NONE gui=bold
hi Special guifg=#b2b2b2 guibg=NONE gui=NONE
hi SpecialKey guifg=#ffb500 guibg=#000c16 gui=NONE
hi Statement guifg=#ffffff guibg=NONE gui=bold
hi StorageClass guifg=#ffffff guibg=NONE gui=bold
hi String guifg=#6497c5 guibg=NONE gui=NONE
hi Tag guifg=#0065d3 guibg=NONE gui=NONE
hi Title guifg=#b2b2b2 guibg=NONE gui=bold
hi Todo guifg=#00a6ff guibg=NONE gui=inverse,bold
hi Type guifg=NONE guibg=NONE gui=NONE
hi Underlined guifg=NONE guibg=NONE gui=underline
hi rubyClass guifg=#ffffff guibg=NONE gui=bold
hi rubyFunction guifg=#ffca00 guibg=NONE gui=bold
hi rubyInterpolationDelimiter guifg=NONE guibg=NONE gui=NONE
hi rubySymbol guifg=#a4ed2d guibg=NONE gui=bold
hi rubyConstant guifg=#7a88f6 guibg=NONE gui=bold
hi rubyStringDelimiter guifg=#6497c5 guibg=NONE gui=NONE
hi rubyBlockParameter guifg=NONE guibg=NONE gui=NONE
hi rubyInstanceVariable guifg=#0068c5 guibg=NONE gui=NONE
hi rubyInclude guifg=#ffffff guibg=NONE gui=bold
hi rubyGlobalVariable guifg=#0068c5 guibg=NONE gui=NONE
hi rubyRegexp guifg=#6497c5 guibg=NONE gui=NONE
hi rubyRegexpDelimiter guifg=#6497c5 guibg=NONE gui=NONE
hi rubyEscape guifg=#a4ed2d guibg=NONE gui=bold
hi rubyControl guifg=#ffffff guibg=NONE gui=bold
hi rubyClassVariable guifg=NONE guibg=NONE gui=NONE
hi rubyOperator guifg=#ffffff guibg=NONE gui=bold
hi rubyException guifg=#ffffff guibg=NONE gui=bold
hi rubyPseudoVariable guifg=#0068c5 guibg=NONE gui=NONE
hi rubyRailsUserClass guifg=#7a88f6 guibg=NONE gui=bold
hi rubyRailsARAssociationMethod guifg=#815db3 guibg=NONE gui=NONE
hi rubyRailsARMethod guifg=#815db3 guibg=NONE gui=NONE
hi rubyRailsRenderMethod guifg=#815db3 guibg=NONE gui=NONE
hi rubyRailsMethod guifg=#815db3 guibg=NONE gui=NONE
hi erubyDelimiter guifg=NONE guibg=NONE gui=NONE
hi erubyComment guifg=#00a6ff guibg=NONE gui=NONE
hi erubyRailsMethod guifg=#815db3 guibg=NONE gui=NONE
hi htmlTag guifg=NONE guibg=NONE gui=NONE
hi htmlEndTag guifg=NONE guibg=NONE gui=NONE
hi htmlTagName guifg=NONE guibg=NONE gui=NONE
hi htmlArg guifg=NONE guibg=NONE gui=NONE
hi htmlSpecialChar guifg=#a4ed2d guibg=NONE gui=bold
hi javaScriptFunction guifg=#ffffff guibg=NONE gui=bold
hi javaScriptRailsFunction guifg=#815db3 guibg=NONE gui=NONE
hi javaScriptBraces guifg=NONE guibg=NONE gui=NONE
hi yamlKey guifg=#0065d3 guibg=NONE gui=NONE
hi yamlAnchor guifg=#0068c5 guibg=NONE gui=NONE
hi yamlAlias guifg=#0068c5 guibg=NONE gui=NONE
hi yamlDocumentHeader guifg=NONE guibg=#090c15 gui=NONE
hi cssURL guifg=NONE guibg=NONE gui=NONE
hi cssFunctionName guifg=#815db3 guibg=NONE gui=NONE
hi cssColor guifg=#a4ed2d guibg=NONE gui=bold
hi cssPseudoClassId guifg=NONE guibg=NONE gui=NONE
hi cssClassName guifg=NONE guibg=NONE gui=NONE
hi cssValueLength guifg=#d70000 guibg=NONE gui=NONE
hi cssCommonAttr guifg=#06960e guibg=NONE gui=NONE
hi cssBraces guifg=NONE guibg=NONE gui=NONE
3 changes: 2 additions & 1 deletion vim/vimrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,5 @@ autocmd FileType c,php,perl,ruby call MyProgSettings()

" autocmd FileType text set filetype=conf

source ~/.dotfiles/vim/vimrc.color
"source ~/.dotfiles/vim/vimrc.color
source ~/.dotfiles/vim/argonaut.vim

0 comments on commit 6e68827

Please sign in to comment.