Skip to content

Instantly share code, notes, and snippets.

View doiyo's full-sized avatar

doiyo

  • Tokyo
  • 09:37 (UTC +09:00)
View GitHub Profile
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
set -g mode-keys vi
set -g status-keys vi
set -g default-terminal "screen-256color"
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind c new-window -a -c "#{pane_current_path}"
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
@doiyo
doiyo / .vimrc
Last active June 10, 2025 06:30
set number
"color koehler
"syntax on
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Sets how many lines of history VIM has to remember
set history=700