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
" .vimrc | |
" This began as a "minimal vimrc for new vim users to start with" at | |
" http://vimuniversity.com/samples/your-first-vimrc-should-be-nearly-empty | |
" | |
" But that URL no longer exists. | |
" | |
" Original Author: Bram Moolenaar <[email protected]> | |
" Made more minimal by: Ben Orenstein | |
" Modified by : Ben McCormick | |
" Last change by ats: March 21, 2021 |
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
############################################################################### | |
################################## PREFIX #################################### | |
############################################################################### | |
unbind C-b | |
set -g prefix ` | |
bind -r ` send-prefix | |
############################################################################### | |
################################## SETTINGS ################################### |
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
" Fix key mapping issues for GUI | |
inoremap <silent> <S-Insert> <C-R>+ | |
cnoremap <S-Insert> <C-R>+ | |
nnoremap <silent> <C-6> <C-^> | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" config for nvim-qt " | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" To check if neovim-qt is running, use `exists('g:GuiLoaded')`, | |
" see https://github.com/equalsraf/neovim-qt/issues/219 |
OlderNewer