12 lines
433 B
Bash
12 lines
433 B
Bash
#!/usr/bin/env sh
|
|
|
|
# This file can be used to execute commands before the editor session starts.
|
|
#
|
|
# The location of this file is defined in the editor's config.json and can be changed
|
|
#
|
|
# It can for example be used to set environment variables for any lsp(s) used
|
|
# Or like this example to set kitty padding to 0
|
|
# kitty @ --to="$KITTY_LISTEN_ON" set-spacing padding=0 margin=0 2>/dev/null || true
|
|
|
|
echo "Starting crib editor..."
|