{"id":25653058,"url":"https://github.com/thewizardshell/started-draco-vim","last_synced_at":"2026-02-15T02:31:13.304Z","repository":{"id":254375400,"uuid":"846347536","full_name":"thewizardshell/Started-Draco-Vim","owner":"thewizardshell","description":"Started Draco Vim is a customizable Vim configuration designed to boost productivity and coding efficiency. Integrating popular plugins like NERDTree, fzf, coc.nvim, and vim-airline, it offers a powerful and streamlined editing environment with features like easy motion navigation.","archived":false,"fork":false,"pushed_at":"2024-08-23T03:05:27.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-15T18:56:52.334Z","etag":null,"topics":["vim","vim-configs","vim-configuration","vim-setup","vimrc","vimscript"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thewizardshell.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":"2024-08-23T02:43:34.000Z","updated_at":"2024-09-11T16:53:35.000Z","dependencies_parsed_at":"2024-08-23T03:45:41.137Z","dependency_job_id":"529665a1-297d-4196-8cf3-6cdb0c660990","html_url":"https://github.com/thewizardshell/Started-Draco-Vim","commit_stats":null,"previous_names":["vicenteroa/started-draco-vim","thewizardshell/started-draco-vim"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/thewizardshell/Started-Draco-Vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewizardshell%2FStarted-Draco-Vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewizardshell%2FStarted-Draco-Vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewizardshell%2FStarted-Draco-Vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewizardshell%2FStarted-Draco-Vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thewizardshell","download_url":"https://codeload.github.com/thewizardshell/Started-Draco-Vim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thewizardshell%2FStarted-Draco-Vim/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268488758,"owners_count":24258328,"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-08-03T02:00:12.545Z","response_time":2577,"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":["vim","vim-configs","vim-configuration","vim-setup","vimrc","vimscript"],"created_at":"2025-02-23T19:23:28.827Z","updated_at":"2025-10-07T09:17:50.471Z","avatar_url":"https://github.com/thewizardshell.png","language":"Vim Script","readme":"# Started-Draco-Vim\n![94shots_so](https://github.com/user-attachments/assets/238523dc-323f-4f7d-8cc5-d8cd28d92a6c)\n![Version](https://img.shields.io/badge/version-1.0.0-blue)\n![Vim Version](https://img.shields.io/badge/vim-%3E%3D8.2-green)\n![Contributors](https://img.shields.io/badge/contributors-vicenteroa-orange)\n![Issues](https://img.shields.io/github/issues/vicenteroa/Started-Draco-Vim)\n![License](https://img.shields.io/github/license/vicenteroa/Started-Draco-Vim)\n# Vim Installation and Configuration Guide\n\n## Plug Installation\n\n### On Windows\n\n1. **Install Vim**:\n   - Make sure you have Vim installed. You can download it from [vim.org](https://www.vim.org/download.php) or install it via [Chocolatey](https://chocolatey.org/) using the command `choco install vim`.\n\n2. **Install Plug**:\n   - Open a terminal (cmd or PowerShell).\n   - Run the following command to download Plug and place it in the appropriate directory:\n     ```sh\n     curl -fLo %USERPROFILE%\\vimfiles\\autoload\\plug.vim --create-dirs \\\n       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim\n     ```\n\n3. **Configure Plug in Vim**:\n   - Create or edit the `_vimrc` file in `%USERPROFILE%`.\n   - Add the following content to initialize Plug:\n     ```vim\n     call plug#begin('~/.vim/plugged')\n     \" List of plugins here\n     call plug#end()\n     ```\n\n### On Linux\n\n1. **Install Vim**:\n   - Make sure you have Vim installed. You can install it using your package manager, for example:\n     ```sh\n     sudo apt-get install vim\n     ```\n\n2. **Install Plug**:\n   - Open a terminal.\n   - Run the following command to download Plug:\n     ```sh\n     curl -fLo ~/.vim/autoload/plug.vim --create-dirs \\\n       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim\n     ```\n\n3. **Configure Plug in Vim**:\n   - Create or edit the `.vimrc` file in your home directory.\n   - Add the following content to initialize Plug:\n     ```vim\n     call plug#begin('~/.vim/plugged')\n     \" List of plugins here\n     call plug#end()\n     ```\n\n## Custom Configuration\n\nThis `.vimrc` file configures various aspects of your Vim environment. Here's a description of each section:\n\n### Plugins\n\nPlugins are managed by Plug and are initialized with:\n```vim\ncall plug#begin('~/.vim/plugged')\n\" List of plugins here\ncall plug#end()\n```\n\n\n## General Settings\n\n```vim\nset relativenumber\nset showcmd\nset showmatch\nset tabpagemax=10\nset showtabline=2\nset laststatus=2\nset timeoutlen=500\n```\n- relativenumber: Shows relative line numbers.\n- showcmd: Displays the current command in the status line.\n- showmatch: Highlights matching parentheses or brackets.\n- tabpagemax: Maximum number of tab pages.\n- showtabline: Always show the tab line.\n- laststatus: Always show the status line.\n- timeoutlen: Timeout for key sequences.\n## Plugin Settings\n- NERDTree: File explorer.\n- Airline: Status line with custom themes.\n- which-key: Displays available key mappings.\n- coc.nvim: Autocompletion and LSP support.\n## Key Mappings\n- \u003cLeader\u003e\u003cSpace\u003e: Opens the which-key menu.\n- \u003cSpace\u003ee: Toggles NERDTree.\n- \u003cS-H\u003e/\u003cS-L\u003e: Navigates between tabs.\n- \u003cC-s\u003e: Saves the current file.\n\n## coc.nvim Configuration\n```vim\nlet g:coc_global_extensions = [\n  \\ 'coc-json',\n  \\ 'coc-tsserver',\n  \\ 'coc-html',\n  \\ 'coc-css',\n  \\ 'coc-eslint',\n  \\ 'coc-prettier',\n  \\ ]\n```\nInstalls extensions for language support and development tools.\n\n# Best Workflow\nStart Vim:\n\n- Open Vim and use :PlugInstall to install all the listed plugins.\n- Open Files Using Startify:\n\n- Use Startify to quickly open recent files, directories, and sessions if available.\nCreate New Buffers:\nUse Shift + n to create a new buffer.\nOpen Files:\n\n- Use Space Space to open any file you need at the moment.\nExplore and Use Plugins:\nUse :NERDTreeToggle to explore files.\nUse :Files to quickly search for files.\nUse :Gstatus to manage Git status.\nCustomize Your Environment:\n\nAdjust key mappings and settings according to your workflow.\nKeep Updated:\n\nUpdate your plugins with :PlugUpdate.\nFollow these steps to set up and customize your Vim environment. Enjoy an efficient and productive workflow.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewizardshell%2Fstarted-draco-vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthewizardshell%2Fstarted-draco-vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewizardshell%2Fstarted-draco-vim/lists"}