-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 48c7e43
Showing
5 changed files
with
294 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# remap prefix from 'C-b' to 'C-a' | ||
unbind C-b | ||
set-option -g prefix C-a | ||
bind-key C-a send-prefix | ||
|
||
bind-key -n M-. next-window | ||
bind-key -n M-, previous-window | ||
bind-key -n M-c new-window | ||
|
||
set-window-option -g automatic-rename on | ||
set-option -g set-titles on | ||
|
||
###################### | ||
### DESIGN CHANGES ### | ||
###################### | ||
|
||
# loud or quiet? | ||
set -g visual-activity off | ||
set -g visual-bell off | ||
set -g visual-silence off | ||
setw -g monitor-activity off | ||
set -g bell-action none | ||
|
||
# modes | ||
setw -g clock-mode-colour colour5 | ||
setw -g mode-style 'fg=colour1 bg=colour18 bold' | ||
|
||
# panes | ||
set -g pane-border-style 'fg=colour19 bg=colour0' | ||
set -g pane-active-border-style 'bg=colour0 fg=colour9' | ||
|
||
# statusbar | ||
set -g status-position bottom | ||
set -g status-justify left | ||
set -g status-style 'bg=colour18 fg=colour137 dim' | ||
set -g status-left '' | ||
set -g status-right '#[fg=colour233,bg=colour19] %d/%m #[fg=colour233,bg=colour8] %H:%M:%S ' | ||
set -g status-right-length 50 | ||
set -g status-left-length 20 | ||
|
||
setw -g window-status-current-style 'fg=colour1 bg=colour19 bold' | ||
setw -g window-status-current-format ' #I#[fg=colour249]:#[fg=colour255]#W#[fg=colour249]#F ' | ||
|
||
setw -g window-status-style 'fg=colour9 bg=colour18' | ||
setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F ' | ||
|
||
setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold' | ||
|
||
# messages | ||
set -g message-style 'fg=colour232 bg=colour16 bold' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
snippet ipdb | ||
import ipdb; ipdb.set_trace() | ||
endsnippet | ||
|
||
snippet main | ||
if __name__ == '__main__': | ||
endsnippet | ||
|
||
snippet argparse | ||
parser = argparse.ArgumentParser(description='') | ||
parser.add_argument('--cfg', type=str, default='') | ||
parser.parse_args() | ||
endsnippet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
snippet bash | ||
#!/usr/bin/env bash | ||
endsnippet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
set nocompatible " required | ||
filetype off " required | ||
|
||
set rtp+=~/.vim/bundle/Vundle.vim | ||
call vundle#begin() | ||
Plugin 'gmarik/Vundle.vim' | ||
Plugin 'vim-scripts/indentpython.vim' | ||
Plugin 'kien/ctrlp.vim' | ||
Plugin 'haya14busa/incsearch.vim' | ||
Plugin 'vim-airline/vim-airline' | ||
Plugin 'vim-airline/vim-airline-themes' | ||
Plugin 'dense-analysis/ale' | ||
Plugin 'zxqfl/tabnine-vim' | ||
Plugin 'airblade/vim-gitgutter' | ||
Plugin 'kshenoy/vim-signature' | ||
Plugin 'ConradIrwin/vim-bracketed-paste' | ||
Plugin 'vim-python/python-syntax' | ||
Plugin 'thaerkh/vim-indentguides' | ||
Plugin 'SirVer/ultisnips' | ||
|
||
Plugin 'jnurmine/Zenburn' | ||
Plugin 'altercation/vim-colors-solarized' | ||
Plugin 'haishanh/night-owl.vim' | ||
Plugin 'morhetz/gruvbox' | ||
Plugin 'nanotech/jellybeans.vim' | ||
Plugin 'mhartington/oceanic-next' | ||
call vundle#end() " required | ||
filetype plugin indent on " required | ||
|
||
" Use the below highlight group when displaying bad whitespace is desired. | ||
highlight BadWhitespace ctermbg=red guibg=red | ||
" Display tabs at the beginning of a line in Python mode as bad. | ||
au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/ | ||
" Make trailing whitespace be flagged as bad. | ||
au BufRead,BufNewFile *.py,*.pyw,*.c,*.h match BadWhitespace /\s\+$/ | ||
|
||
set encoding=utf-8 | ||
let python_highlight_all=1 | ||
syntax on | ||
set background=dark | ||
colorscheme gruvbox | ||
set number relativenumber | ||
let mapleader=" " | ||
set laststatus=2 | ||
set showcmd | ||
set scrolloff=10 | ||
set listchars="" | ||
|
||
|
||
map / <Plug>(incsearch-forward) | ||
map ? <Plug>(incsearch-backward) | ||
map g/ <Plug>(incsearch-stay) | ||
" :h g:incsearch#auto_nohlsearch | ||
set hlsearch | ||
let g:incsearch#auto_nohlsearch = 1 | ||
map n <Plug>(incsearch-nohl-n) | ||
map N <Plug>(incsearch-nohl-N) | ||
map * <Plug>(incsearch-nohl-*) | ||
map # <Plug>(incsearch-nohl-#) | ||
map g* <Plug>(incsearch-nohl-g*) | ||
map g# <Plug>(incsearch-nohl-g#) | ||
|
||
let g:airline#extensions#tabline#enabled = 1 | ||
let g:airline_powerline_fonts = 1 | ||
let g:airline_theme = 'deus' | ||
|
||
let g:ale_linters = {'python': ['flake8']} | ||
let g:ale_fixers = {'python': ['black']} | ||
map <leader>g :ALEGoToDefinition<CR> | ||
map <leader>f :ALEFix<CR> | ||
autocmd BufWritePost * GitGutter | ||
nmap ]h <Plug>(GitGutterNextHunk) | ||
nmap [h <Plug>(GitGutterPrevHunk) | ||
nmap <Leader>h <Plug>(GitGutterPreviewHunk) | ||
nmap <Leader>u <Plug>(GitGutterUndoHunk) | ||
map <Leader>j :bprevious<CR> | ||
map <Leader>k :bnext<CR> | ||
map <Leader>1 :b1<CR> | ||
map <Leader>2 :b2<CR> | ||
map <Leader>3 :b3<CR> | ||
map <Leader>4 :b4<CR> | ||
map <Leader>5 :b5<CR> | ||
map <Leader>x :bd<CR> | ||
map <Leader>z :pclose<CR> | ||
map <Leader><Leader> :write<CR> | ||
map <Leader>d :Explore<CR> | ||
map <Leader>e :edit | ||
let g:UltiSnipsExpandTrigger="<c-space>" | ||
|
||
no <down> <Nop> | ||
no <left> <Nop> | ||
no <right> <Nop> | ||
no <up> <Nop> | ||
ino <down> <Nop> | ||
ino <left> <Nop> | ||
ino <right> <Nop> | ||
ino <up> <Nop> | ||
vno <down> <Nop> | ||
vno <left> <Nop> | ||
vno <right> <Nop> | ||
vno <up> <Nop> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
# If you come from bash you might have to change your $PATH. | ||
export PATH=$HOME/dev/_scripts:$PATH | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
|
||
. /home/i/miniconda3/etc/profile.d/conda.sh | ||
|
||
# Path to your oh-my-zsh installation. | ||
export ZSH="/home/i/.oh-my-zsh" | ||
|
||
# Set name of the theme to load --- if set to "random", it will | ||
# load a random theme each time oh-my-zsh is loaded, in which case, | ||
# to know which specific one was loaded, run: echo $RANDOM_THEME | ||
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | ||
ZSH_THEME="agnoster" | ||
|
||
# Set list of themes to pick from when loading at random | ||
# Setting this variable when ZSH_THEME=random will cause zsh to load | ||
# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/ | ||
# If set to an empty array, this variable will have no effect. | ||
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | ||
|
||
# Uncomment the following line to use case-sensitive completion. | ||
# CASE_SENSITIVE="true" | ||
|
||
# Uncomment the following line to use hyphen-insensitive completion. | ||
# Case-sensitive completion must be off. _ and - will be interchangeable. | ||
# HYPHEN_INSENSITIVE="true" | ||
|
||
# Uncomment the following line to disable bi-weekly auto-update checks. | ||
# DISABLE_AUTO_UPDATE="true" | ||
|
||
# Uncomment the following line to change how often to auto-update (in days). | ||
# export UPDATE_ZSH_DAYS=13 | ||
|
||
# Uncomment the following line to disable colors in ls. | ||
# DISABLE_LS_COLORS="true" | ||
|
||
# Uncomment the following line to disable auto-setting terminal title. | ||
# DISABLE_AUTO_TITLE="true" | ||
|
||
# Uncomment the following line to enable command auto-correction. | ||
# ENABLE_CORRECTION="true" | ||
|
||
# Uncomment the following line to display red dots whilst waiting for completion. | ||
# COMPLETION_WAITING_DOTS="true" | ||
|
||
# Uncomment the following line if you want to disable marking untracked files | ||
# under VCS as dirty. This makes repository status check for large repositories | ||
# much, much faster. | ||
# DISABLE_UNTRACKED_FILES_DIRTY="true" | ||
|
||
# Uncomment the following line if you want to change the command execution time | ||
# stamp shown in the history command output. | ||
# You can set one of the optional three formats: | ||
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | ||
# or set a custom format using the strftime function format specifications, | ||
# see 'man strftime' for details. | ||
# HIST_STAMPS="mm/dd/yyyy" | ||
|
||
# Would you like to use another custom folder than $ZSH/custom? | ||
# ZSH_CUSTOM=/path/to/new-custom-folder | ||
|
||
# Which plugins would you like to load? | ||
# Standard plugins can be found in ~/.oh-my-zsh/plugins/* | ||
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | ||
# Example format: plugins=(rails git textmate ruby lighthouse) | ||
# Add wisely, as too many plugins slow down shell startup. | ||
plugins=(git zsh-autosuggestions) | ||
|
||
source $ZSH/oh-my-zsh.sh | ||
|
||
# User configuration | ||
|
||
# export MANPATH="/usr/local/man:$MANPATH" | ||
|
||
# You may need to manually set your language environment | ||
# export LANG=en_US.UTF-8 | ||
|
||
# Preferred editor for local and remote sessions | ||
# if [[ -n $SSH_CONNECTION ]]; then | ||
# export EDITOR='vim' | ||
# else | ||
# export EDITOR='mvim' | ||
# fi | ||
|
||
# Compilation flags | ||
# export ARCHFLAGS="-arch x86_64" | ||
|
||
# ssh | ||
# export SSH_KEY_PATH="~/.ssh/rsa_id" | ||
|
||
# Set personal aliases, overriding those provided by oh-my-zsh libs, | ||
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | ||
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | ||
# For a full list of active aliases, run `alias`. | ||
# | ||
# Example aliases | ||
# alias zshconfig="mate ~/.zshrc" | ||
# alias ohmyzsh="mate ~/.oh-my-zsh" | ||
alias -s py=vim #opens ruby files in vim | ||
alias v=vim | ||
|
||
DEFAULT_USER=`whoami` | ||
|
||
# If not running interactively, do not do anything | ||
[[ $- != *i* ]] && return | ||
[[ -z "$TMUX" ]] && { tmux attach || exec tmux new-session && exit; } | ||
|
||
TERM=screen-256color | ||
|
||
conda activate dev | ||
|
||
# The next line updates PATH for the Google Cloud SDK. | ||
if [ -f '/home/i/google-cloud-sdk/path.zsh.inc' ]; then . '/home/i/google-cloud-sdk/path.zsh.inc'; fi | ||
|
||
# The next line enables shell command completion for gcloud. | ||
if [ -f '/home/i/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/i/google-cloud-sdk/completion.zsh.inc'; fi | ||
|
||
source /usr/share/doc/fzf/examples/key-bindings.zsh | ||
source /usr/share/zsh/vendor-completions/_fzf | ||
export FZF_DEFAULT_OPTS='--height 40% --layout=reverse' |