{"id":16414042,"url":"https://github.com/khaliqgant/configuration-files","last_synced_at":"2025-07-29T04:05:15.257Z","repository":{"id":7889191,"uuid":"9266463","full_name":"khaliqgant/Configuration-Files","owner":"khaliqgant","description":":computer:  For syncing my . files across different machines and setting up a new computer","archived":false,"fork":false,"pushed_at":"2024-03-25T08:32:37.000Z","size":2457,"stargazers_count":12,"open_issues_count":7,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T13:38:25.497Z","etag":null,"topics":["brewdler","configuration","dotfiles","homebrew","symlinks","vim","vimrc"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","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/khaliqgant.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":"2013-04-06T20:54:00.000Z","updated_at":"2023-12-07T08:09:38.000Z","dependencies_parsed_at":"2024-03-30T20:15:09.303Z","dependency_job_id":null,"html_url":"https://github.com/khaliqgant/Configuration-Files","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/khaliqgant/Configuration-Files","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaliqgant%2FConfiguration-Files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaliqgant%2FConfiguration-Files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaliqgant%2FConfiguration-Files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaliqgant%2FConfiguration-Files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khaliqgant","download_url":"https://codeload.github.com/khaliqgant/Configuration-Files/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaliqgant%2FConfiguration-Files/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267626725,"owners_count":24117702,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["brewdler","configuration","dotfiles","homebrew","symlinks","vim","vimrc"],"created_at":"2024-10-11T06:53:06.744Z","updated_at":"2025-07-29T04:05:15.203Z","avatar_url":"https://github.com/khaliqgant.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"My Configuration Files\n--------\n- Create symlinks to these files for version controlled config files\n- For example\n```\nln -s ~/Configuration-Files/.vimrc.bundles.local ~/\n```\n- If doing a new set up quickly symlink everything by\n```\nln -s .* ~/\n```\n\n* I am also using spf13-vim-3 (http://vim.spf13.com/#install) for my vimrc settings which holds the majority of my settings. Any overrides or extra settings are located in the vimrc.local which overrides spf13 settings.\n* In addition I am using JSHint (https://github.com/Shutnik/jshint2.vim) as an additional bundle\n* Also using numbers.vim (https://github.com/myusuf3/numbers.vim) to toggle numbers, specifically to show line numbers within nerdtree for faster navigation\n* Using [Vim Instant Markdown](https://github.com/suan/vim-instant-markdown) to open up an instant preview\n    run ```InstantMarkdownPreview```\n* Making use of [YouCompleteMe](https://github.com/Valloric/YouCompleteMe). Steps:\n    1. Add to Vundle (.vimrc-bundles.local)\n    2. cd into the YouCompleteMe directory and run\n        ```\n        ./install.sh --clang-completer\n        ```\n    3. In my instance, I had brew unlink cmake and reinstall via brew\n    4. Also to quiet the python quitting error, had to brew unlink python as wel\n* Using [homebrew-brewdler](https://github.com/Homebrew/homebrew-brewdler) \nto manage homebrew depdencies with a Brewfile. To install brewdler run\n```\nbrew tap Homebrew/brewdler\n```\n* To install homebrew depdencies navigate to this config repo and run\n```\nbrew brewdle\n```\n* Might want to move to [homebrew-file](https://github.com/rcmdnk/homebrew-file) instead\n* To run latex manipulations download [mactext](http://www.tug.org/mactex/index.html)\n\nExecutables\n---------\n* Any custom shell scripts turn the file into an executable\n```\nchmod +x replace\n```\n* Sym link it to the usr/local/bin directory\n```\nln -s ~/Configuration-Files/bin/replace .\n```\n\nLinting\n---------\n* Using [ALE](https://github.com/w0rp/ale) to run linting checks since it lints\nasynchrnously to prevent lag. Syntastic is installed but disabled:\n```\n# https://stackoverflow.com/questions/20030603/vim-syntastic-how-to-disable-the-checker\nlet g:syntastic_mode_map = { 'mode': 'passive', 'active_filetypes': [],'passive_filetypes': [] }\nnnoremap \u003cC-w\u003eE :SyntasticCheck\u003cCR\u003e :SyntasticToggleMode\u003cCR\u003e\n```\n* ALE lags on text entering so it doesn't lint on text change:\n```\nlet g:ale_lint_on_text_changed = 'never'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhaliqgant%2Fconfiguration-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhaliqgant%2Fconfiguration-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhaliqgant%2Fconfiguration-files/lists"}