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
# Enable true-colors. | |
set -g default-terminal "tmux-256color" | |
set -ga terminal-overrides ",*256col*:Tc" | |
# Enable mouse. | |
set -g mouse on | |
# Plugins. | |
set -g @plugin "tmux-plugins/tpm" | |
set -g @plugin "arcticicestudio/nord-tmux" | |
# Load tmux plugin manager. |
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
"" OS-specfic variables and plugins. | |
if has('win64') || has('win32') || has('win16') | |
let s:os = 'Windows' | |
let s:data_dir = has('nvim') ? stdpath('data') . '/site' : $HOME . '/vimfiles' | |
set shell=powershell | |
set shellcmdflag=-NoProfile\ -Command | |
else | |
let s:os = substitute(system('uname'), '\n', '', '') | |
let s:data_dir = has('nvim') ? stdpath('data') . '/site' : $HOME . '/.vim' | |
endif |