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
[6] # Version number. Do not delete. | |
[[workspace]] | |
# These directories and files will be scanned when a workspace is opened so that search etc. works. | |
# Example: | |
# /Users/my_name/projects/my_project # <- the first directory in the list becomes the working directory | |
# /Users/my_name/jai | |
# src # <- this would be relative to the config file location | |
## NOTE projects live in |
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
{ | |
"$schema": "https://zed.dev/schema/themes/v0.1.0.json", | |
"name": "Simply21", | |
"author": "keyle", | |
"themes": [ | |
{ | |
"name": "Simply21", | |
"appearance": "dark", | |
"style": { | |
"border": "#292A2E", |
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
[ | |
{ | |
"bindings": { | |
"cmd-[": "pane::GoBack", | |
"cmd-]": "pane::GoForward", | |
"cmd-shift-r": "file_finder::Toggle", | |
"cmd-g": "editor::GoToDefinition", | |
"ctrl-g": "editor::OpenExcerpts", // alt-enter | |
"ctrl-[": "workspace::ActivatePreviousPane", | |
"ctrl-]": "workspace::ActivateNextPane", |
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
{ | |
"Alt-/": "lua:comment.comment", | |
"Alt-=": "HSplit", | |
"Alt-Left": "WordLeft", | |
"Alt-MouseLeft": "MouseMultiCursor", | |
"Alt-Right": "WordRight", | |
"Alt-[": "PreviousSplit", | |
"Alt-\\": "VSplit", | |
"Alt-]": "NextSplit", | |
"Alt-d": "command:definition", |
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
color-link default "#dddddd" | |
color-link comment "blue" | |
color-link constant "red" | |
color-link identifier "cyan" | |
color-link statement "yellow" | |
color-link symbol "yellow" | |
color-link preproc "magenta" | |
color-link type "green" | |
color-link special "magenta" | |
color-link ignore "default" |
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
# https://ghostty.zerebos.com/app/import-export | |
# fonts | |
font-family = Berkeley Mono | |
font-size = 18 | |
# disable ligatures | |
font-feature = -calt | |
# window |
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
in the repo, create the file: | |
.git/hooks/pre-commit | |
don't forget to chmod +x pre-commit as it needs to be executable | |
source: https://www.reddit.com/r/Jai/comments/jp0vjy/nocheckin_behavior_in_gitsourcetree/ |
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
/** | |
* MacEditorTextView | |
* Copyright (c) Thiago Holanda 2020-2021 | |
* https://gist.github.com/unnamedd/6e8c3fbc806b8deb60fa65d6b9affab0 | |
* MIT license | |
*/ | |
import SwiftUI | |
import Neon |
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
#!/bin/bash | |
#################################### | |
# Backup to tar | |
# inspired from | |
# https://ubuntu.com/server/docs/basic-backup-shell-script | |
#################################### | |
# What to backup. | |
backup_files="/home /var/spool/mail /etc /root /opt" |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "lldb", | |
"request": "launch", | |
"name": "Debug", | |
"program": "${workspaceFolder}/target/debug/<!!!your-binary-name!!!>", | |
"preLaunchTask": "rust: cargo build", | |
"args": [], |
NewerOlder