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
| " Use filetype 'ox' for *.ox files | |
| augroup filetypedetect | |
| au! | |
| au BufNewFile,BufRead *.ox setfiletype ox | |
| augroup END |
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
| syntax on | |
| filetype plugin indent on | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| set guioptions-=m | |
| set guioptions-=T | |
| set noesckeys | |
| set laststatus=2 | |
| set ruler |
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
| require("config.lazy") | |
| require("lspconfig").dartls.setup({ | |
| cmd = { "/Users/n/fvm/default/bin/dart", "language-server", "--protocol=lsp" }, | |
| }) | |
| -- remove relative numbers | |
| -- vim.opt.relativenumber = false | |
| -- turn off auto suggestions |
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
| { | |
| "agent": { | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-4.1" | |
| }, | |
| "inline_assistant_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-4.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
| { | |
| "Alt-/": "lua:comment.comment", | |
| "Alt-Left": "StartOfLine", | |
| "Alt-Right": "EndOfLine", | |
| "Alt-c": "Copy", | |
| "Alt-d": "DuplicateLine", | |
| "Alt-e": "command:format", | |
| "Alt-f": "Find", | |
| "Alt-g": "command:definition", | |
| "Alt-k": "lua:comment.comment", |
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
| { | |
| "$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 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
| dir() { | |
| cd "$(fd "^${*}" "${HOME}" --max-depth 2 --type d | fzf --select-1 --query "${*}")" | |
| } |
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
| [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 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
| { | |
| "$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 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
| [ | |
| { | |
| "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", |
NewerOlder