This commit is contained in:
danijoo
2020-06-12 12:49:08 +02:00
parent eab9ba020a
commit 7c84ab2d84
3 changed files with 12 additions and 1 deletions

View File

@@ -9,6 +9,12 @@ alias ls='ls --color=auto -lh'
alias workon='source activate' # enable anaconda environ
alias cwl="cwl-runner"
function gitignore() {
for i in "$@"; do
echo $i >> .gitignore
done
}
# lhr
alias squeue="ssh lcluster11 squeue"
alias csum="ssh lcluster11 csum"

View File

@@ -14,7 +14,8 @@ set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-cpu'
set -g @plugin 'pwittchen/tmux-plugin-ram'
set -g @plugin 'danijoo/tmux-plugin-simple-gpu'
run -b '~/.tmux/plugins/tpm/tpm'
set -g status-right '#{cpu_bg_color} CPU: #{cpu_percentage} RAM: #{ram}| %a %h-%d %H:%M '
set -g status-right '#{cpu_bg_color} CPU: #{cpu_percentage} GPU: #{gpu} RAM: #{ram}| %a %h-%d %H:%M '

View File

@@ -29,6 +29,7 @@ Plugin 'Yggdroot/indentLine'
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
Plugin 'morhetz/gruvbox'
Plugin 'preservim/nerdcommenter'
let g:vim_markdown_folding_disabled = 1
let g:pymode_python = "python3"
@@ -61,3 +62,6 @@ set colorcolumn=80,100,120
colorscheme gruvbox
let g:gruvbox_contrast_dark = 'hard'
set background=dark
" nerdcommenter
filetype plugin on