{"id":22980006,"url":"https://github.com/masoud-maghsoudi/my-favorite-vim-plugins","last_synced_at":"2025-04-02T09:22:00.139Z","repository":{"id":193648471,"uuid":"689213565","full_name":"masoud-maghsoudi/my-favorite-vim-plugins","owner":"masoud-maghsoudi","description":"My favorite plugins for vim editor","archived":false,"fork":false,"pushed_at":"2023-09-09T19:03:13.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T00:28:31.380Z","etag":null,"topics":["vim","vim-plugin","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/masoud-maghsoudi.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":"2023-09-09T05:34:32.000Z","updated_at":"2023-10-01T20:01:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"63dad152-db5d-49dd-86a2-63441e361884","html_url":"https://github.com/masoud-maghsoudi/my-favorite-vim-plugins","commit_stats":null,"previous_names":["masoud-maghsoudi/my-favorite-vim-plugins"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoud-maghsoudi%2Fmy-favorite-vim-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoud-maghsoudi%2Fmy-favorite-vim-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoud-maghsoudi%2Fmy-favorite-vim-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoud-maghsoudi%2Fmy-favorite-vim-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masoud-maghsoudi","download_url":"https://codeload.github.com/masoud-maghsoudi/my-favorite-vim-plugins/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246785604,"owners_count":20833535,"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":["vim","vim-plugin","vimrc"],"created_at":"2024-12-15T01:36:39.212Z","updated_at":"2025-04-02T09:22:00.119Z","avatar_url":"https://github.com/masoud-maghsoudi.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\nI have listed my favorite plugins for vim editor specified as below:\n\n[vim-plug](https://github.com/junegunn/vim-plug) - A minimalist Vim plugin manager.\n\n[vim-sensible](https://github.com/tpope/vim-sensible) - Think of sensible.vim as one step above 'nocompatible' mode: a universal set of defaults that (hopefully) everyone can agree on.\n\n[NERDTree](https://github.com/scrooloose/nerdtree/) - The NERDTree is a file system explorer for the Vim editor. Using this plugin, users can visually browse complex directory hierarchies, quickly open files for reading or editing, and perform basic file system operations.\n\n[python-mode](https://github.com/python-mode/python-mode) - Python-mode is a Vim plugin that magically converts Vim into a Python IDE.\n\n[auto-pairs](https://github.com/jiangmiao/auto-pairs) - Insert or delete brackets, parens, quotes in pair.\n\n[ansible-vim](https://github.com/pearofducks/ansible-vim) - This is a vim syntax plugin for Ansible 2.x, it supports YAML playbooks, Jinja2 templates, and Ansible's hosts files.\n\n[vim-terraform](https://github.com/hashivim/vim-terraform) - This plugin adds a `:Terraform` command that runs terraform, with tab completion\nof subcommands.\nIt also sets up `*.hcl`, `*.tf`, `*.tfvars`, `.terraformrc` and `terraform.rc`\nfiles to be highlighted as HCL and `*.tfstate` as JSON.\n\n[vim-airline](https://github.com/vim-airline/vim-airline) - Lean \u0026 mean status/tabline for vim that's light as air.\n\n[vim-airline-theme](https://github.com/vim-airline/vim-airline-themes) - fficial theme repository for [vim-airline](https://github.com/vim-airline/vim-airline).\n\n[powerline](https://github.com/powerline/powerline) - Powerline is a statusline plugin for vim, and provides statuslines and prompts for several other applications.\n\n[awesome-vim-colorschemes](https://github.com/rafi/awesome-vim-colorschemes) - Collection of awesome color schemes for Neo/vim, merged for quick use.\n\n[dracula/vim](https://github.com/dracula/vim) - 🧛🏻‍♂️ Dark theme for Vim.\n\n[gruvbox](https://github.com/morhetz/gruvbox) - gruvbox is heavily inspired by [badwolf](https://github.com/sjl/badwolf), [jellybeans](https://github.com/nanotech/jellybeans.vim) and [solarized](https://github.com/altercation/solarized).\n\n## Installation\n\n### Linux\n\n[vim-plug](https://github.com/junegunn/vim-plug) is a vim plugin manager which is required to install other plugins. So at first, you need to install it via [installation guide](https://github.com/junegunn/vim-plug#installation) and backup your currnet .vimrc file:\n\n```sh\nmv ~/.vimrc ~/.vimrc.backup\n```\n\nand then clone the new .vimrc file from repo in the home directory of user:\n\n```sh\ncurl -fLo ~/.vimrc \\\n    https://raw.githubusercontent.com/masoud-maghsoudi/my-favorite-vim-plugins/main/.vimrc\n```\n\nFinally, open vim on your machine and insert the command below in vim normal mode:\n\n```vim\n:PlugInstall\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasoud-maghsoudi%2Fmy-favorite-vim-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasoud-maghsoudi%2Fmy-favorite-vim-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasoud-maghsoudi%2Fmy-favorite-vim-plugins/lists"}