Skip to content

Instantly share code, notes, and snippets.

View fontka's full-sized avatar

Kauan Fontanela fontka

  • Brazil
  • 07:16 (UTC -03:00)
View GitHub Profile
" load local config
runtime local.vim
" syntax highlight
syntax on
" indentation
filetype plugin indent on
set tabstop=4 shiftwidth=4 softtabstop=4
#!/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 ] && (
@fontka
fontka / zed-keymap.jsonc
Last active December 18, 2024 19:26
Zed editor settings & keymap
// 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"]