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
" load local config | |
runtime local.vim | |
" syntax highlight | |
syntax on | |
" indentation | |
filetype plugin indent on | |
set tabstop=4 shiftwidth=4 softtabstop=4 |
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
#!/bin/sh | |
# USAGE: | |
# run 'todo' to search for TAGS recursively and open in quickfix | |
# redirect if you don't want to open VIM e.g. 'todo > cfile', 'todo | cat' | |
TAGS='TODO|FIXME|NOTE' | |
RMTABS_REGEX='s/\([0-9]\+:\)[\t| ]*/\1 /' | |
[ -t 1 ] && ( |
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
Show hidden characters
// For information on binding keys, see the Zed | |
// documentation: https://zed.dev/docs/key-bindings | |
[ | |
{ | |
"context": "Workspace", | |
"bindings": { | |
"alt-h": ["workspace::ActivatePaneInDirection", "Left"], | |
"alt-l": ["workspace::ActivatePaneInDirection", "Right"], | |
"alt-k": ["workspace::ActivatePaneInDirection", "Up"], | |
"alt-j": ["workspace::ActivatePaneInDirection", "Down"] |