Last active
September 17, 2021 06:16
-
-
Save baddwin/7933cd8300209d2ce6b6679ae75a9341 to your computer and use it in GitHub Desktop.
My dotfiles
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
set -g prefix C-a | |
set-option -g default-shell /bin/zsh | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'jimeh/tmux-themepack' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-continuum' | |
set -g @themepack 'powerline/default/green' | |
# https://unix.stackexchange.com/a/318285/96386 | |
set -g mouse on | |
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -e; send-keys -M'" | |
bind -n WheelDownPane select-pane -t= \; send-keys -M | |
bind -n C-WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M | |
bind -T copy-mode-vi C-WheelUpPane send-keys -X halfpage-up | |
bind -T copy-mode-vi C-WheelDownPane send-keys -X halfpage-down | |
bind -T copy-mode-emacs C-WheelUpPane send-keys -X halfpage-up | |
bind -T copy-mode-emacs C-WheelDownPane send-keys -X halfpage-down | |
# To copy, left click and drag to highlight text in yellow, | |
# once you release left click yellow text will disappear and will automatically be available in clibboard | |
# # Use vim keybindings in copy mode | |
setw -g mode-keys vi | |
# Update default binding of `Enter` to also use copy-pipe | |
unbind -T copy-mode-vi Enter | |
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -selection c" | |
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -in -selection clipboard" | |
set -g @continuum-restore 'on' | |
run '~/.tmux/plugins/tpm/tpm' |
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
set laststatus=2 " Always display the statusline in all windows | |
set showtabline=2 " Always display the tabline, even if there is only one tab | |
set noshowmode " Hide the default mode text (e.g. -- INSERT -- below the statusline) | |
set t_Co=256 | |
call plug#begin() | |
Plug 'jiangmiao/auto-pairs' | |
Plug 'captbaritone/better-indent-support-for-php-with-html' | |
Plug 'mattn/emmet-vim' | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'phpactor/phpactor', {'for': 'php', 'tag': '*', 'do': 'composer install --no-dev -o'} | |
" Plug 'scrooloose/nerdcommenter' | |
" Plug 'Yggdroot/indentLine' | |
" Plug 'ctrlpvim/ctrlp.vim' | |
" diganti fzf | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'junegunn/fzf.vim' | |
Plug 'junegunn/goyo.vim' | |
Plug 'junegunn/limelight.vim' | |
Plug 'junegunn/vim-easy-align' | |
" Plug 'ervandew/supertab' | |
" Plug 'SirVer/ultisnips' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'airblade/vim-gitgutter' | |
Plug 'tpope/vim-fugitive' | |
Plug 'jwalton512/vim-blade' | |
Plug 'qpkorr/vim-bufkill' | |
Plug 'honza/vim-snippets' | |
Plug 'alvan/vim-closetag' | |
" Plug 'pangloss/vim-javascript' | |
Plug 'chemzqm/vim-jsx-improve' | |
Plug 'ntpeters/vim-better-whitespace' | |
" Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } | |
" Plug 'adelarsq/vim-matchit' | |
" Buat LaTeX writings and compilation | |
" Plug 'lervag/vimtex' | |
call plug#end() | |
" autocmd vimenter * NERDTree | |
set number relativenumber | |
set numberwidth=4 | |
set cpoptions+=n | |
:augroup numbertoggle | |
: autocmd! | |
: autocmd BufEnter,FocusGained,InsertLeave * set relativenumber | |
: autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber | |
:augroup END | |
" highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE | |
set tabstop=4 shiftwidth=4 expandtab | |
set backspace=indent,eol,start " make backspace a more flexible | |
set backup " make backup files | |
set backupdir=~/.vim/tmp/backup " where to put backup files | |
set directory=~/.vim/tmp/swap " directory to place swap files in | |
set undodir=~/.vim/tmp/undo " directory to place undo files in | |
"set listchars=eol:¬,tab:·,trail:~,extends:>,precedes:< | |
set lcs=eol:¬,tab:·\ ,trail:~ | |
set list | |
" setting plugins | |
let g:airline_theme='powerlineish' | |
let g:airline_powerline_fonts = 1 | |
let g:airline_section_z = airline#section#create(['windowswap', '%3p%% ', 'linenr', ':%3v']) | |
let g:airline#extensions#tabline#enabled = 1 | |
autocmd StdinReadPre * let s:std_in=1 | |
" autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | endif | |
" enable line numbers | |
" let NERDTreeShowLineNumbers=1 | |
" make sure relative line numbers are used | |
" autocmd FileType nerdtree setlocal relativenumber | |
" let g:nerdtree_tabs_autoclose=0 | |
" make YCM compatible with UltiSnips (using supertab) | |
" let g:ycm_key_list_select_completion = ['<C-n>', '<Down>'] | |
" let g:ycm_key_list_previous_completion = ['<C-p>', '<Up>'] | |
" let g:SuperTabDefaultCompletionType = '<C-n>' | |
" better key bindings for UltiSnipsExpandTrigger | |
"let g:UltiSnipsExpandTrigger = "<tab>" | |
"let g:UltiSnipsJumpForwardTrigger = "<tab>" | |
"let g:UltiSnipsJumpBackwardTrigger = "<s-tab>" | |
" filenames like *.xml, *.html, *.xhtml, ... | |
" Then after you press <kbd>></kbd> in these files, this plugin will try to close the current tag. | |
" | |
let g:closetag_filenames = '*.html,*.blade.php' | |
" limelight | |
let g:limelight_conceal_ctermfg = 240 | |
" map <F11> :Goyo <CR> | |
" fzf.vim | |
nnoremap <C-p> :GFiles<CR> | |
nnoremap <C-o> :Buffers<CR> | |
"nnoremap <C-l> :NERDTreeToggle<CR> | |
"netrw settings | |
nnoremap <C-l> :Lexplore<CR> | |
let g:netrw_liststyle = 3 | |
let g:netrw_banner = 0 | |
let g:netrw_browse_split = 4 | |
let g:netrw_altv = 1 | |
let g:netrw_winsize = 25 | |
autocmd FileType netrw setl bufhidden=delete | |
let g:NetrwIsOpen=0 | |
function! ToggleNetrw() | |
if g:NetrwIsOpen | |
let i = bufnr("$") | |
while (i >= 1) | |
if (getbufvar(i, "&filetype") == "netrw") | |
silent exe "bwipeout " . i | |
endif | |
let i-=1 | |
endwhile | |
let g:NetrwIsOpen=0 | |
else | |
let g:NetrwIsOpen=1 | |
silent Lexplore | |
endif | |
endfunction |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/$USER/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="avit" | |
# Set list of themes to load | |
# Setting this variable when ZSH_THEME=random | |
# cause zsh load theme from this variable instead of | |
# looking in ~/.oh-my-zsh/themes/ | |
# An empty array 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. | |
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
# 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? (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 | |
) | |
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" | |
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment