start new:
tmux
start new with session name:
tmux new -s myname
alias lt='ls -lrth' | |
alias gs='git status' | |
alias ga='git add' | |
alias gc='git commit' | |
alias gco='git checkout' | |
alias gcf='git clean -fd' | |
alias gb='git branch' | |
alias gcfo='git checkout . && git clean -df' | |
alias gd='git diff' | |
alias gg='git graph' |
mkdir -p ~/miniconda3 | |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh | |
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 | |
rm -rf ~/miniconda3/miniconda.sh | |
~/miniconda3/bin/conda init bash | |
~/miniconda3/bin/conda init zsh |
source ~/miniconda3/etc/profile.d/conda.sh | |
conda create -n CV | |
conda activate CV | |
conda install python=3.6 -y | |
conda install matplotlib -y | |
conda install numpy -y | |
conda install opencv -y | |
conda install jupyter -y | |
conda install -c conda-forge termcolor -y | |
conda install -c conda-forge ipywidgets -y |
" Vim-Plug configuration got from https://github.com/junegunn/vim-plug | |
call plug#begin() | |
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
Plug 'junegunn/vim-easy-align' | |
" Multiple Plug commands can be written in a single line using | separators | |
"Plug 'SirVer/ultisnips' | |
" Plug 'honza/vim-snippets' | |
" On-demand loading |
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |