{"id":16521906,"url":"https://github.com/meshula/home","last_synced_at":"2026-05-15T07:09:43.319Z","repository":{"id":147567287,"uuid":"59794556","full_name":"meshula/home","owner":"meshula","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-14T19:27:49.000Z","size":1880,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-14T20:25:37.611Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meshula.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-05-27T01:30:34.000Z","updated_at":"2025-02-14T19:27:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"4102dbf2-9517-4224-9e26-37b23304dc43","html_url":"https://github.com/meshula/home","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshula%2Fhome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshula%2Fhome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshula%2Fhome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshula%2Fhome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meshula","download_url":"https://codeload.github.com/meshula/home/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241596844,"owners_count":19988144,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T16:58:27.117Z","updated_at":"2026-05-15T07:09:43.314Z","avatar_url":"https://github.com/meshula.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# home\n\n## git configuration\n\n```sh\ngit config --global core.autocrlf false\ngit config --global core.excludesFile \"~/.gitignore_global\"\n```\n\n### cargo\n```sh\ncargo install ripgrep\ncargo install lsd\ncargo install git-delta\n```\n### for clangd\nin order that C++ completion works within nvim:\n```sh\ncmake . -DCMAKE_EXPORT_COMPILE_COMMANDS=1\n```\n## mac\n\nLink dotfiles\n```bash\nmv ~/.zshrc ~/.zshrc/old\nln -s macos/zshrc_volatile ~/.zshrc\nmkdir -p ~/.config/nvim\nln -s macos/config.nvim.lua ~/.config/nvim/lua\nln -s ~/config/nvim/lua/init.lua ~/.config/nvim/init.lua\nln -s macos/zls.json ~/Library/Application\\ Support/zls.json\n```\n\n### conda\n\n* install miniconda: [https://docs.conda.io/en/latest/miniconda.html](https://docs.conda.io/en/latest/miniconda.html)\n* create an `sdev` conda env and do some basic setup:\n```bash\nconda create -n sdev\nconda activate sdev\nconda config --add channels conda-forge\nconda install nvim tmux cmake git git-lfs tree htop python pip ipython ipdb \\\nripgrep the_silver_searcher\n\n# LSPs\nconda install pyright dnachun::lua-language-server\n\n# install tpm (tmux package manager)\ngit clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm\n```\n\n\n#### git_config.sh\nRun once. Adds git alias lol and lola which will print a concise change history\n\n\n### start_ssh.sh\nLaunches an ssh agent, and adds a key named github\n\n### zig for vim\n```sh\nmkdir -p ~/.vim/pack/plugins/start/\ncd ~/.vim/pack/plugins/start/\ngit clone https://github.com/ziglang/zig.vim\n```\nbuild or install zls at \n```sh\n/Users/nporcino/bin/zls\n```\n\n### powerlevel10k\n```sh\ngit clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k\necho 'source ~/powerlevel10k/powerlevel10k.zsh-theme' \u003e\u003e~/.zshrc\np10k configure\n```\n\n### theme.sh\n\n## install theme.sh on mac\n\n```sh\nsudo curl -Lo ~/bin/theme.sh 'https://git.io/JM70M'\nsudo chmod +x ~/bin/theme.sh\ntheme.sh --dark --list\ntheme.sh zenburn\n```\n\n## windows\n\n### windows terminal\n\n```sh\ninit.vim goes in ~/AppData/Local/nvim\nssh keys go in ~/.ssh\n```\n\n### windows install SSH server\n```sh\nSettings \u003e Optional Features \u003e Add a feature \u003e OpenSSH Client\nIn an elevated powershell, \n```\n\n```sh\nSet-Service -StartupType Manual ssh-agent\nStart-SshAgent\n\nedit git config --globel -e\n\nand add\n[core]\n    sshCommand = c:\\WINDOWS\\System32\\OpenSSH\\ssh.exe\n```\n\n### Plug for windows\n\nin powershell:\n\n```sh\niwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |`\n    ni \"$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim\" -Force\n```\n\n### ccls windows\n\n```sh\nchoco install ccls\n```\n\n### wsl\n\ncopy the dot files\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshula%2Fhome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeshula%2Fhome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshula%2Fhome/lists"}