Skip to content

Instantly share code, notes, and snippets.

View nelsonspbr's full-sized avatar
🌎

Nelson Mimura Gonzalez nelsonspbr

🌎
View GitHub Profile
@nelsonspbr
nelsonspbr / .vimrc
Created March 4, 2021 21:26
.vimrc
syntax on
set tabstop=4
set softtabstop=4
set expandtab
set number
set showmatch
set incsearch
set hlsearch
set nonumber
@nelsonspbr
nelsonspbr / .tmux.conf
Created March 4, 2021 21:26
.tmux.conf
# Use bash as default shell
set-option -g default-shell /bin/bash
# Use current path when creating windows and panes
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}" -n ""
# Previous/next window
unbind b