Compare commits

..

No commits in common. "6b498fcf35a12c3be3879fcf746c22ebb2d6ca4c" and "0bd59a911582de65b488f29128a2a9ad2bd21fff" have entirely different histories.

5 changed files with 34 additions and 49 deletions

View File

@ -34,9 +34,33 @@ font:
glyph_offset:
x: 0
y: 0
#use_thin_strokes: true
debug:
render_timer: false
persistent_logging: false
draw_bold_text_with_bright_colors: true
colors:
primary:
background: '0x282a36'
foreground: '0xf8f8f2'
normal:
black: '0x000000'
red: '0xff5555'
green: '0x50fa7b'
yellow: '0xf1fa8c'
blue: '0xcaa9fa'
magenta: '0xff79c6'
cyan: '0x8be9fd'
white: '0xbfbfbf'
bright:
black: '0x575b70'
red: '0xff6e67'
green: '0x5af78e'
yellow: '0xf4f99d'
blue: '0xcaa9fa'
magenta: '0xff92d0'
cyan: '0x9aedfe'
white: '0xe6e6e6'
bell:
animation: EaseOutExpo
duration: 0
@ -373,32 +397,3 @@ key_bindings:
chars: "\e[24;3~"
- key: NumpadEnter
chars: "\n"
# Colors (Darcula)
colors:
# Default colors
primary:
background: '0x282a36'
foreground: '0xf8f8f2'
# Normal colors
normal:
black: '0x000000'
red: '0xff5555'
green: '0x50fa7b'
yellow: '0xf1fa8c'
blue: '0xcaa9fa'
magenta: '0xff79c6'
cyan: '0x8be9fd'
white: '0xbfbfbf'
# Bright colors
bright:
black: '0x282a35'
red: '0xff6e67'
green: '0x5af78e'
yellow: '0xf4f99d'
blue: '0xcaa9fa'
magenta: '0xff92d0'
cyan: '0x9aedfe'
white: '0xe6e6e6'

View File

@ -66,7 +66,6 @@
[tag]
gpgsign = true
forceSignAnnotated = true
[gpg]
program = gpg2

View File

@ -955,7 +955,6 @@
typeset -g POWERLEVEL9K_VIRTUALENV_{LEFT,RIGHT}_DELIMITER=
# Custom icon.
# typeset -g POWERLEVEL9K_VIRTUALENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
typeset -g POWERLEVEL9K_VIRTUALENV_GENERIC_NAMES=(virtualenv venv .venv env)
#####################[ anaconda: conda environment (https://conda.io/) ]######################
# Anaconda environment color.

17
vimrc
View File

@ -29,7 +29,7 @@ set statusline+=%#warningmsg#
set statusline+=%*
set tabstop=4
set updatetime=100
set textwidth=1000
set textwidth=67
if has("persistent_undo")
set undodir=~/.vim/_undo//
@ -46,13 +46,9 @@ au BufRead,BufNewFile .envrc setfiletype sh
au BufRead,BufNewFile Dockerfile* setfiletype dockerfile
au BufRead,BufNewFile Pipfile setfiletype toml
au BufRead,BufNewFile kubectl-edit-status-* setfiletype yaml
au BufRead,BufNewFile .lintr setfiletype yaml
au BufRead,BufNewFile devcontainer.json setfiletype jsonc
au BufRead,BufNewFile devcontainer-feature.json setfiletype jsonc
au BufNewFile,BufRead *.go setlocal noexpandtab tabstop=4 shiftwidth=4
au FileType go nmap <leader>r <Plug>(go-run)
au FileType go nmap <leader>r <Plug>(go-run)
au FileType go nmap <Leader>c <Plug>(go-coverage-toggle)
au FileType sh set expandtab
au QuickFixCmdPost *grep* cwindow
" run :GoBuild or :GoTestCompile based on the go file
@ -77,10 +73,7 @@ map <leader>l :Minimap<CR>
map <leader>L :MinimapClose<CR>
nmap <F8> :TagbarToggle<CR>
augroup black_on_save
autocmd!
autocmd BufWritePre *.py Black
augroup end
au FileType python nmap <leader>t :Black<CR>:w<CR>
let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
let g:airline_powerline_fonts = 1
@ -115,8 +108,8 @@ let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_frontmatter = 1
let g:yapf_style = "pep8"
packadd! dichromatic
colorscheme dichromatic
packadd! dracula
colorscheme dracula
hi Comment cterm=NONE ctermfg=DarkRed gui=NONE guifg=red2
hi minimapCursor ctermbg=59 ctermfg=228 guibg=#5F5F5F guifg=#FFFF87

11
zshrc
View File

@ -74,7 +74,6 @@ path=(
plugins=(
archlinux
aws
azure
brew
bundler
command-not-found
@ -178,14 +177,14 @@ if [[ -f ~/.cargo/env ]]; then
fi
if gimme --version &>/dev/null; then
eval "$(gimme 1.21.4)" 2>/dev/null
eval "$(gimme 1.21.x)" 2>/dev/null
export GOPATH="$HOME/go"
fi
cdpath=(
$HOME/code
$HOME/src
)
CDPATH="$HOME/code:$HOME/src:$HOME/Development/src:$HOME/repos"
for prefix in github.com github.com/meatballhat code.google.com/p ; do
CDPATH="$HOME/go/src/$prefix:$CDPATH"
done
export GPG_TTY=$(tty)