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
# alacritty.toml | |
# commented lines are the defaults | |
# man 5 alacritty (>0.13) for full config manual | |
#import = [ | |
#"~/.config/alacritty/catpuccin-mocha.toml", | |
#"~/.config/alacritty/keybindings.toml", | |
#] | |
[shell] |
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
[ | |
{ "keys": [":"], "type": "function", "command": "enter_command_line_mode" }, | |
{ "keys": ["q"], "type": "prompt", "command": "exit", "cursorPosition": -1 }, | |
{ "keys": ["/"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 }, | |
{ "keys": ["TAB","l"], "type": "function", "command": "focus_next" }, | |
{ "keys": ["SHIFT_TAB","h"], "type": "function", "command": "focus_previous" }, | |
{ "keys": ["UP","k"], "type": "function", "command": "move_up" }, | |
{ "keys": ["DOWN","j"], "type": "function", "command": "move_down" }, | |
{ "keys": ["PAGE_UP","K","u"], "type": "function", "command": "page_up" }, |
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
" Reggie .vimrc | |
set nocompatible " be iMproved, required | |
set number | |
set shell=/bin/bash " Enable vim with fish shell | |
filetype off " required for vundle | |
" Vundle {{{ | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' |