{"id":22447617,"url":"https://github.com/mattms/my_vim_settings","last_synced_at":"2026-03-10T22:37:37.991Z","repository":{"id":8243603,"uuid":"9688194","full_name":"MattMS/my_vim_settings","owner":"MattMS","description":"Behold my text-editing muscle memory!","archived":false,"fork":false,"pushed_at":"2018-07-21T13:36:48.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-10T21:31:31.116Z","etag":null,"topics":[],"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/MattMS.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}},"created_at":"2013-04-26T05:45:35.000Z","updated_at":"2018-07-21T13:36:49.000Z","dependencies_parsed_at":"2022-08-06T23:15:31.123Z","dependency_job_id":null,"html_url":"https://github.com/MattMS/my_vim_settings","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MattMS/my_vim_settings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattMS%2Fmy_vim_settings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattMS%2Fmy_vim_settings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattMS%2Fmy_vim_settings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattMS%2Fmy_vim_settings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MattMS","download_url":"https://codeload.github.com/MattMS/my_vim_settings/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattMS%2Fmy_vim_settings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30359285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"ssl_error","status_checked_at":"2026-03-10T21:40:59.357Z","response_time":106,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-12-06T04:17:53.660Z","updated_at":"2026-03-10T22:37:37.974Z","avatar_url":"https://github.com/MattMS.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Vim configuration\n\nThis repository contains my Vim configuration, used on both Lubuntu and\nWindows.\n\n\n## Setup\n\n### Linux\n\n```bash\nln -s ~/Documents/my_vim_config ~/.vim\nln -s ~/Documents/my_vim_config/vimrc ~/.vimrc\n```\n\n\n### Windows\n\n```\ncd C:\\Users\\my_name\nmklink /D vimfiles C:\\Users\\my_name\\Documents\\GitHub\\my_vim_config\nmklink _vimrc C:\\Users\\my_name\\Documents\\GitHub\\my_vim_config\\vimrc\n```\n\n\n## Plugins\n\nEach of these are saved as submodules in the `bundle` folder.\n\nAll plugins are loaded with\n[Pathogen](https://github.com/tpope/vim-pathogen).\n\n- [Easymotion](https://github.com/Lokaltog/vim-easymotion)\n- [EditorConfig](https://github.com/editorconfig/editorconfig-vim)\n- [Fugitive](https://github.com/tpope/vim-fugitive)\n- [NERD Commenter](https://github.com/scrooloose/nerdcommenter)\n- [Repeat](https://github.com/tpope/vim-repeat)\n- [speeddating](https://github.com/tpope/vim-speeddating)\n- [Surround](https://github.com/tpope/vim-surround)\n- [Unite](https://github.com/Shougo/unite.vim)\n\n\n### Language support\n\n- [CoffeeScript](https://github.com/kchmck/vim-coffee-script) and\n  [Literate CoffeeScript](https://github.com/mintplant/vim-literate-coffeescript)\n- [Jade](https://github.com/digitaltoad/vim-jade)\n- [Markdown](https://github.com/tpope/vim-markdown)\n- [Stylus](https://github.com/wavded/vim-stylus)\n\n\n### Colour scheme\n\n- [Solarized](https://github.com/altercation/solarized)\n\n\n### Old plugins\n\nUsed [Airline](https://github.com/bling/vim-airline) for a while, but\ncould never get the patched fonts to work.\nRemoved when I realised I did not check it enough to justify having it.\n`Ctrl + G` works fine.\n\nReplaced [Ctrlp](https://github.com/kien/ctrlp.vim) with Unite.\n\n\n## Managing plugins\n\n### Update plugins\n\nUpdate all submodules with:\n\n```bash\ngit submodule foreach git pull origin master\n```\n\nThen `git add bundle/*`, `git commit` and `git push`.\nGitHub for Windows does not currently like doing this.\n\n**On other machines** update submodules after pulling changes:\n\n```bash\ngit submodule update\n```\n\n\n### Remove plugin\n\nFrom: [How do I remove a Git submodule?](http://stackoverflow.com/questions/1260748/how-do-i-remove-a-git-submodule)\n\n```bash\ngit submodule deinit bundle/my_submodule\ngit rm bundle/my_submodule\ngit commit -m \"Remove my_submodule\"\nrm -rf .git/modules/bundle/my_submodule\n```\n\n\n## Notes\n\n- http://vim.wikia.com/wiki/Easier_buffer_switching\n\n\n### Plugins\n\nPlace plugins in `~/.vim/plugin/` or `$HOME/vimfiles/plugin`.\n\nFile type plugins are in `~/.vim/plugin/ftplugin`.\n`name` can be anything.\n\n- ftplugin/\u003cfiletype\u003e.vim\n\n- ftplugin/\u003cfiletype\u003e_\u003cname\u003e.vim\n\n- ftplugin/\u003cfiletype\u003e/\u003cname\u003e.vim\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattms%2Fmy_vim_settings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattms%2Fmy_vim_settings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattms%2Fmy_vim_settings/lists"}