Last active
August 16, 2020 23:47
-
-
Save narajaon/bea0f83b69c4f9469cb21ade6d5e56ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac | |
| # don't put duplicate lines or lines starting with space in the history. | |
| # See bash(1) for more options | |
| HISTCONTROL=ignoreboth | |
| # append to the history file, don't overwrite it | |
| shopt -s histappend | |
| # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) | |
| HISTSIZE=1000 | |
| HISTFILESIZE=2000 | |
| # check the window size after each command and, if necessary, | |
| # update the values of LINES and COLUMNS. | |
| shopt -s checkwinsize | |
| # If set, the pattern "**" used in a pathname expansion context will | |
| # match all files and zero or more directories and subdirectories. | |
| #shopt -s globstar | |
| # make less more friendly for non-text input files, see lesspipe(1) | |
| [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" | |
| # set variable identifying the chroot you work in (used in the prompt below) | |
| if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then | |
| debian_chroot=$(cat /etc/debian_chroot) | |
| fi | |
| # set a fancy prompt (non-color, unless we know we "want" color) | |
| case "$TERM" in | |
| xterm-color|*-256color) color_prompt=yes;; | |
| esac | |
| # uncomment for a colored prompt, if the terminal has the capability; turned | |
| # off by default to not distract the user: the focus in a terminal window | |
| # should be on the output of commands, not on the prompt | |
| #force_color_prompt=yes | |
| if [ -n "$force_color_prompt" ]; then | |
| if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then | |
| # We have color support; assume it's compliant with Ecma-48 | |
| # (ISO/IEC-6429). (Lack of such support is extremely rare, and such | |
| # a case would tend to support setf rather than setaf.) | |
| color_prompt=yes | |
| else | |
| color_prompt= | |
| fi | |
| fi | |
| if [ "$color_prompt" = yes ]; then | |
| PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
| else | |
| PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' | |
| fi | |
| unset color_prompt force_color_prompt | |
| # If this is an xterm set the title to user@host:dir | |
| case "$TERM" in | |
| xterm*|rxvt*) | |
| PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" | |
| ;; | |
| *) | |
| ;; | |
| esac | |
| # enable color support of ls and also add handy aliases | |
| if [ -x /usr/bin/dircolors ]; then | |
| test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" | |
| alias ls='ls --color=auto' | |
| #alias dir='dir --color=auto' | |
| #alias vdir='vdir --color=auto' | |
| alias grep='grep --color=auto' | |
| alias fgrep='fgrep --color=auto' | |
| alias egrep='egrep --color=auto' | |
| fi | |
| # colored GCC warnings and errors | |
| #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' | |
| # some more ls aliases | |
| alias ll='ls -alF' | |
| alias la='ls -A' | |
| alias l='ls -CF' | |
| # Add an "alert" alias for long running commands. Use like so: | |
| # sleep 10; alert | |
| alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' | |
| # Alias definitions. | |
| # You may want to put all your additions into a separate file like | |
| # ~/.bash_aliases, instead of adding them here directly. | |
| # See /usr/share/doc/bash-doc/examples in the bash-doc package. | |
| if [ -f ~/.bash_aliases ]; then | |
| . ~/.bash_aliases | |
| fi | |
| # enable programmable completion features (you don't need to enable | |
| # this, if it's already enabled in /etc/bash.bashrc and /etc/profile | |
| # sources /etc/bash.bashrc). | |
| if ! shopt -oq posix; then | |
| if [ -f /usr/share/bash-completion/bash_completion ]; then | |
| . /usr/share/bash-completion/bash_completion | |
| elif [ -f /etc/bash_completion ]; then | |
| . /etc/bash_completion | |
| fi | |
| fi | |
| alias vim="stty stop '' -ixoff; /usr/bin/nvim" | |
| export VISUAL=vim | |
| export EDITOR="$VISUAL" | |
| export MYVIMDIR="$HOME/.config/nvim" | |
| export MYVIMRC="$MYVIMDIR/init.vim" | |
| alias gcl="git clone" | |
| alias gst="git status" | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
| [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
| # Setup dir | |
| export STPDIR="$HOME/.config/my_setup" | |
| # fzf to select projects | |
| export BRC="$STPDIR/.bashrc" | |
| export GPDIR="$HOME/Code" | |
| alias brc="vim $BRC" | |
| alias vrc="cd $MYVIMDIR && vim ." | |
| alias vri="cd $MYVIMDIR && vim init.vim" | |
| alias xx="exec bash" | |
| cd $HOME/.config/my_setup | |
| function openProject() { | |
| projdir=$(ls $GPDIR | fzf --bind=tab:toggle+clear-query+down -m --preview 'tree -L 1 $GPDIR/{}' --height='30%' --reverse) | |
| [ -z $projdir ] && echo "FZF: no argument provided" && return -1 | |
| res=() | |
| for pro in $projdir; do | |
| res+="$GPDIR/$pro "; | |
| done | |
| vim -p -c "tabdo tc %" -- $res | |
| } | |
| alias gp="openProject" | |
| # use fd instead of find for FZF | |
| alias fd=fdfind | |
| export FZF_DEFAULT_COMMAND='fdfind --type f --hidden --follow --exclude .git' | |
| # rebind ctrl and capslock | |
| setxkbmap -option ctrl:nocaps | |
| xcape -e 'Control_L=Escape' | |
| # xmodmap -e 'keycode 56 = Meta_L' | |
| xset r rate 190 50 | |
| export MANPAGER="sh -c 'col -bx | bat --theme="ansi-dark" -l man -p'" | |
| [ -f ~/.fzf.bash ] && source ~/.fzf.bash |
This file contains hidden or 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
| let SessionLoad = 1 | |
| let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0 | |
| let v:this_session=expand("<sfile>:p") | |
| silent only | |
| cd ~/.config/nvim | |
| if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' | |
| let s:wipebuf = bufnr('%') | |
| endif | |
| set shortmess=aoO | |
| badd +3 tweaks/autocmd.vim | |
| badd +1 tweaks/statusline.vim | |
| badd +1 ~/Code/webapp/src/ui/pages/CoverPage/CoverPage.js | |
| badd +1 ~/Code/tmuxline/README.md | |
| badd +241 ~/Code/tmuxline/autoload/tmuxline.vim | |
| badd +34 ~/Code/tmuxline/autoload/tmuxline/util.vim | |
| badd +1 tweaks/onestatus.vim | |
| badd +91 ~/Code/tmuxline/tags | |
| badd +58 init.vim | |
| badd +1 ~/.tmux.conf | |
| badd +1 execute(\'hi\') | |
| badd +0 /usr/share/nvim/runtime/doc/pattern.txt | |
| badd +0 man://tmux(1) | |
| argglobal | |
| %argdel | |
| $argadd tweaks/onestatus.vim | |
| set stal=2 | |
| edit tweaks/onestatus.vim | |
| set splitbelow splitright | |
| wincmd _ | wincmd | | |
| vsplit | |
| 1wincmd h | |
| wincmd w | |
| set nosplitbelow | |
| set nosplitright | |
| wincmd t | |
| set winminheight=0 | |
| set winheight=1 | |
| set winminwidth=0 | |
| set winwidth=1 | |
| exe 'vert 1resize ' . ((&columns * 115 + 116) / 232) | |
| exe 'vert 2resize ' . ((&columns * 116 + 116) / 232) | |
| argglobal | |
| setlocal fdm=manual | |
| setlocal fde=0 | |
| setlocal fmr={{{,}}} | |
| setlocal fdi=# | |
| setlocal fdl=0 | |
| setlocal fml=1 | |
| setlocal fdn=20 | |
| setlocal fen | |
| silent! normal! zE | |
| let s:l = 28 - ((27 * winheight(0) + 23) / 46) | |
| if s:l < 1 | let s:l = 1 | endif | |
| exe s:l | |
| normal! zt | |
| 28 | |
| normal! 049| | |
| wincmd w | |
| argglobal | |
| if bufexists("/usr/share/nvim/runtime/doc/pattern.txt") | buffer /usr/share/nvim/runtime/doc/pattern.txt | else | edit /usr/share/nvim/runtime/doc/pattern.txt | endif | |
| setlocal fdm=manual | |
| setlocal fde=0 | |
| setlocal fmr={{{,}}} | |
| setlocal fdi=# | |
| setlocal fdl=0 | |
| setlocal fml=1 | |
| setlocal fdn=20 | |
| setlocal nofen | |
| silent! normal! zE | |
| let s:l = 1031 - ((22 * winheight(0) + 23) / 46) | |
| if s:l < 1 | let s:l = 1 | endif | |
| exe s:l | |
| normal! zt | |
| 1031 | |
| normal! 039| | |
| wincmd w | |
| exe 'vert 1resize ' . ((&columns * 115 + 116) / 232) | |
| exe 'vert 2resize ' . ((&columns * 116 + 116) / 232) | |
| tabedit ~/.tmux.conf | |
| set splitbelow splitright | |
| wincmd _ | wincmd | | |
| vsplit | |
| 1wincmd h | |
| wincmd w | |
| set nosplitbelow | |
| set nosplitright | |
| wincmd t | |
| set winminheight=0 | |
| set winheight=1 | |
| set winminwidth=0 | |
| set winwidth=1 | |
| exe 'vert 1resize ' . ((&columns * 115 + 116) / 232) | |
| exe 'vert 2resize ' . ((&columns * 116 + 116) / 232) | |
| argglobal | |
| setlocal fdm=manual | |
| setlocal fde=0 | |
| setlocal fmr={{{,}}} | |
| setlocal fdi=# | |
| setlocal fdl=0 | |
| setlocal fml=1 | |
| setlocal fdn=20 | |
| setlocal fen | |
| silent! normal! zE | |
| let s:l = 9 - ((8 * winheight(0) + 23) / 46) | |
| if s:l < 1 | let s:l = 1 | endif | |
| exe s:l | |
| normal! zt | |
| 9 | |
| normal! 0 | |
| wincmd w | |
| argglobal | |
| if bufexists("man://tmux(1)") | buffer man://tmux(1) | else | edit man://tmux(1) | endif | |
| setlocal fdm=manual | |
| setlocal fde=0 | |
| setlocal fmr={{{,}}} | |
| setlocal fdi=# | |
| setlocal fdl=0 | |
| setlocal fml=1 | |
| setlocal fdn=20 | |
| setlocal nofen | |
| silent! normal! zE | |
| let s:l = 1 - ((0 * winheight(0) + 23) / 46) | |
| if s:l < 1 | let s:l = 1 | endif | |
| exe s:l | |
| normal! zt | |
| 1 | |
| normal! 0 | |
| wincmd w | |
| exe 'vert 1resize ' . ((&columns * 115 + 116) / 232) | |
| exe 'vert 2resize ' . ((&columns * 116 + 116) / 232) | |
| tabnext 1 | |
| set stal=1 | |
| if exists('s:wipebuf') && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' | |
| silent exe 'bwipe ' . s:wipebuf | |
| endif | |
| unlet! s:wipebuf | |
| set winheight=1 winwidth=20 winminheight=1 winminwidth=1 shortmess=filnxtToOF | |
| let s:sx = expand("<sfile>:p:r")."x.vim" | |
| if file_readable(s:sx) | |
| exe "source " . fnameescape(s:sx) | |
| endif | |
| let &so = s:so_save | let &siso = s:siso_save | |
| doautoall SessionLoadPost | |
| unlet SessionLoad | |
| " vim: set ft=vim : |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment