{"id":20188190,"url":"https://github.com/alex-1900/vim-materia","last_synced_at":"2026-04-16T02:31:56.361Z","repository":{"id":131953973,"uuid":"321103329","full_name":"alex-1900/vim-materia","owner":"alex-1900","description":"🥝  The Materia vim configuration.","archived":false,"fork":false,"pushed_at":"2021-01-10T15:43:50.000Z","size":511,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T22:28:23.545Z","etag":null,"topics":["neovim","nvim","vim","vimfiles","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alex-1900.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-12-13T16:01:15.000Z","updated_at":"2021-01-10T15:43:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"e7e6908c-449e-451b-8564-be18b3b74139","html_url":"https://github.com/alex-1900/vim-materia","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alex-1900/vim-materia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-1900%2Fvim-materia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-1900%2Fvim-materia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-1900%2Fvim-materia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-1900%2Fvim-materia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alex-1900","download_url":"https://codeload.github.com/alex-1900/vim-materia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alex-1900%2Fvim-materia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31868493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"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":["neovim","nvim","vim","vimfiles","vimrc"],"created_at":"2024-11-14T03:28:15.088Z","updated_at":"2026-04-16T02:31:56.337Z","avatar_url":"https://github.com/alex-1900.png","language":"Vim script","readme":"# Vim Materia\nThe materia vim configuration\n\n![Preview](https://user-images.githubusercontent.com/49949411/103734569-377fc880-5027-11eb-8760-9051c9d207bb.gif)\n\n# Get start\nIf you're using vim, link or copy the `init.vim` to `~/.vimrc`, and then, just open your vim/neovim, This will install all plugins (more than 50) into `bundles` directory.\n\nAfter all plugins are installed, You need to restart your vim/nvim.\n\n## Requirements\nThis configure requires Python3, If `:echo has(\"python3\")` returns `1`, then you're done.\n\nEnable Python3 interface with pip:\n```sh\npip3 install --user pynvim\n```\n\nAnd the following optional dependencies:\n- Silver searcher (Ag) for text searching:\nhttps://github.com/ggreer/the_silver_searcher\n\n- Ripgrep (Rg), A line-oriented search tool:\nhttps://github.com/BurntSushi/ripgrep\n\n- Bat, supports syntax highlighting for a large number of programming and markup languages:\nhttps://github.com/sharkdp/bat\n\nYou also need to install a `Powerline font` to display Unicode icons, I’m using the [`SourceCodePro`](https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/SourceCodePro.zip), You can find other fonts at https://github.com/ryanoasis/nerd-fonts\n\n### coc-clangd\nNeed to install [`clangd language server.`](https://github.com/clangd/clangd) to get C/C++/Objective-C surport. Please read the [Quick Start](https://github.com/clangd/coc-clangd#quick-start) section and the clangd document about [Project setup](https://clangd.llvm.org/installation.html#project-setup).\n\nNote that [SIP Issue](https://github.com/rizsotto/Bear/issues/108) for `MacOS` users.\n\n# Configure\nThis object requires more than 50 plugins, and many configuration options, You have two ways to change, add or disable them:\n### The `config.json`\nThe`config.default.json` is used to generate the default options, and you can create a file called `config.json` to replicate it. For example:\n```json\n{\n  \"environment\": {\n    \"http_proxy\": \"'http://localhost:1087'\",\n    \"https_proxy\": \"'http://localhost:1087'\"\n  },\n  \"parts\": {\n    \"vim_virtualenv\": {\n      \"directory\": \"/Users/alex/envs/vim-materia\"\n    }\n  }\n}\n```\n`Materia` will merge the `config.json` with `config.default.json` (merge objects and replace others).\n\n### The `custom` directory\nIf you want to add plugins or make more complex custom settings, You can add your own vimscript in the `custom/main.vim` to add or override the default options and settings.\n\n## Plugins management\nMateria manages plugins in a unified way, ensure that you will not add the same plugin repeatedly:\n```vim\n\" custom/main.vim\n\nlet nord_vim = {'id': 'nord_vim', 'directory': 'nord-vim'}\n\nif materia#config#get('options.colorscheme') == 'nord'\n  function! nord_vim.config()\n    let g:nord_cursor_line_number_background = 1\n    let g:nord_uniform_status_lines = 1\n    let g:nord_bold = materia#config#get('parts.nord_vim.bold')\n    let g:nord_italic = materia#config#get('parts.nord_vim.italic')\n  endfunction\n\n  function! nord_vim.listener()\n    colorscheme nord\n    call airline#switch_theme('nord')\n  endfunction\nendif\n\nfunction! nord_vim.install(install)\n  call a:install('arcticicestudio/nord-vim')\nendfunction\n\ncall materia#part#add(nord_vim)\n```\n\nIn config.json you should:\n```json\n{\n  \"options\": {\n    \"colorscheme\": \"nord\"\n  },\n  \"parts\": {\n    \"nord_vim\": {\n      \"bold\": 0,\n      \"italic\": 1\n    }\n  }\n}\n```\nYou can change the json field `parts.nord_vim.disable` to enable/disable this theme.\n\n# Mixed\nSome records are used to simplify your setup.\n## proxies\n- node/npm/yarn\n```sh\nnpm config set proxy http://username:password@host:port\nnpm config set https-proxy http://username:password@host:port\n\nyarn config set proxy http://username:password@host:port\nyarn config set https-proxy http://username:password@host:port\n```\nremove proxy\n```sh\nnpm config rm proxy\nnpm config rm https-proxy\n\nnpm config delete proxy\nnpm config delete https-proxy\n```\n\n- git\n```sh\ngit config --global http.proxy http://username:password@host:port\n```\nremove proxy\n```sh\ngit config --global --unset http.proxy\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falex-1900%2Fvim-materia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falex-1900%2Fvim-materia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falex-1900%2Fvim-materia/lists"}