Skip to content

Instantly share code, notes, and snippets.

View ats's full-sized avatar

Alan Schussman ats

View GitHub Profile
@ats
ats / .vimrc
Last active August 16, 2022 14:02
" .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 <Bram@vim.org>
" Made more minimal by: Ben Orenstein
" Modified by : Ben McCormick
" Last change by ats: March 21, 2021
@ats
ats / .tmux.conf
Created May 7, 2022 02:45
old tux configuration
###############################################################################
################################## PREFIX ####################################
###############################################################################
unbind C-b
set -g prefix `
bind -r ` send-prefix
###############################################################################
################################## SETTINGS ###################################
@ats
ats / ginit.vim
Created August 16, 2022 14:03
nvim/vimr config file ~/.config/nvim/ginit.vim
" 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