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
| highlight StatusLine guifg=#f8f8f2 guibg=#586e75 gui=NONE ctermfg=8 ctermbg=232 cterm=NONE | |
| highlight StatusLineNC guifg=#75715e guibg=#333333 gui=NONE ctermfg=242 ctermbg=236 cterm=NONE | |
| highlight TabLine guifg=#75715e guibg=#333333 gui=NONE ctermfg=242 ctermbg=236 cterm=NONE | |
| highlight TabLineFill guifg=#75715e guibg=#222222 gui=NONE ctermfg=242 ctermbg=235 cterm=NONE | |
| highlight TabLineSel guifg=#f8f8f2 guibg=#586e75 gui=bold ctermfg=255 ctermbg=242 cterm=bold | |
| highlight Pmenu guifg=#f8f8f2 guibg=#333333 gui=NONE ctermfg=255 ctermbg=236 cterm=NONE | |
| highlight PmenuSel guifg=#222222 guibg=#a6e22e gui=NONE ctermfg=235 ctermbg=148 cterm=NONE | |
| highlight PmenuSbar guibg=#444444 gui=NONE ctermbg=238 cterm=NONE | |
| highlight PmenuThumb guibg=#75715e gui=NONE ctermbg=242 cterm=NONE | |
| highlight WildMenu guifg=#222222 guibg=#a6e22e gui=bold ctermfg=235 ctermbg=148 cterm=bold |
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", |
NewerOlder