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
| set-option -sg escape-time 10 | |
| set-option -g focus-events on | |
| unbind-key C-b | |
| set-option -g prefix C-a | |
| bind-key C-a last-window | |
| set-option -sa terminal-overrides ',xterm-256color:RGB' | |
| set-option -g default-terminal "screen-256color" |
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
| -- Set <space> as the leader key | |
| -- See `:help mapleader` | |
| -- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used) | |
| vim.g.mapleader = '\\' | |
| vim.g.maplocalleader = '\\' | |
| -- Set to true if you have a Nerd Font installed | |
| vim.g.have_nerd_font = false | |
| -- [[ Setting options ]] |