Skip to content

Instantly share code, notes, and snippets.

@rachidcalazans
rachidcalazans / .tmux.conf
Last active November 7, 2020 11:36
.tmux.conf
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# set first window to index 1 (not 0) to map more to the keyboard layout...
set-option -g base-index 1
set-window-option -g pane-base-index 1
set-window-option -g mouse on
set-window-option -g mode-keys vi
@rachidcalazans
rachidcalazans / coc-settings.json
Created November 7, 2020 09:50
coc-settings.json
{
"solargraph.diagnostics": true,
"solargraph.useBundler": false,
"diagnostic.format": "%message [%source]",
"diagnostic.virtualText": true,
"diagnostic.checkCurrentLine": true,
"diagnostic.separateRelatedInformationAsDiagnostics": true,
}