{"id":23803993,"url":"https://github.com/phastmike/vimide","last_synced_at":"2026-06-16T20:31:45.459Z","repository":{"id":44454311,"uuid":"82389119","full_name":"phastmike/vimide","owner":"phastmike","description":"Vim and Tmux as a simple IDE","archived":false,"fork":false,"pushed_at":"2024-06-06T13:18:27.000Z","size":218,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-21T17:18:26.809Z","etag":null,"topics":["vim","vim-ide"],"latest_commit_sha":null,"homepage":null,"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/phastmike.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":"2017-02-18T13:38:04.000Z","updated_at":"2024-06-06T13:18:30.000Z","dependencies_parsed_at":"2024-04-09T17:48:43.334Z","dependency_job_id":null,"html_url":"https://github.com/phastmike/vimide","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phastmike/vimide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phastmike%2Fvimide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phastmike%2Fvimide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phastmike%2Fvimide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phastmike%2Fvimide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phastmike","download_url":"https://codeload.github.com/phastmike/vimide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phastmike%2Fvimide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34423214,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"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-ide"],"created_at":"2025-01-01T22:37:01.196Z","updated_at":"2026-06-16T20:31:45.429Z","avatar_url":"https://github.com/phastmike.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VIMIDE\nShell script to prepare **Vim** and **Tmux** as a simple **IDE**'like code editor with focus on [Vala](http://wiki.gnome.org/Projects/Vala) language. \n\n![vimide](vimide.png \"vimide\")\n\n## Description\n- Using [Vundle](https://github.com/VundleVim/Vundle.vim) as Vim plugin manager.\n- Focus on Vala language (adds syntax highlighting and support)\n- anjuta-tags / ctags (Check workaround)\n- Includes 2 additional colorschemes (valloric and github)\n- Installs powerline fonts\n- Installs tmux\n\n## Shortcut maps and bindings\n\n|Key|Application|Toggles|\n|---|-----------|-------|\n|\u003ckbd\u003eF2\u003c/kbd\u003e| Vi/Vim | Nerdtree (Left side pane) |\n|\u003ckbd\u003eF3\u003c/kbd\u003e| Vi/Vim | Line 80 marker |\n|\u003ckbd\u003eF4\u003c/kbd\u003e| Vi/Vim | Tagbar (Right side pane) |\n|\u003ckbd\u003eF5\u003c/kbd\u003e| Vi/Vim | Indentation markers|\n|\u003ckbd\u003eF6\u003c/kbd\u003e| Vi/Vim | Space and Tab markers |\n|\u003ckbd\u003eF7\u003c/kbd\u003e| Vi/Vim | **Line numbers** |\n|\u003ckbd\u003eF7\u003c/kbd\u003e|  Tmux  | **previous Window** |\n|\u003ckbd\u003eF8\u003c/kbd\u003e|  Tmux  | next Window |\n|\u003ckbd\u003eF9\u003c/kbd\u003e|  Tmux  | new Window |\n|~~\u003ckbd\u003eF11\u003c/kbd\u003e~~|  ~~Tmux~~  | ~~tmux split with zsh (*Check*) - Conflict with gnome terminal Fullscreen F11~~|\n|\u003ckbd\u003eF12\u003c/kbd\u003e|  Tmux  | send-prefix (*nested*) |\n\n## Tagbar workaround\nIt seems anjuta-tags isn't working so here is a workaround: \n\n- use **ctags** instead of **anjuta-tags**\n- edit (as shown below):\n   - `~/.vim/bundle/tagbar/autoload/tagbar/types/ctags.vim`\n   - `~/.vim/bundle/tagbar/autoload/tagbar/types/uctags.vim`\n   \nFrom:\n\n```vim\nif has_key(s:ctags_types, 'vala') || executable('anjuta-tags') \u003c--- Change anjuta-tags \n  let type_vala = s:TypeInfo.New()\n  let type_vala.ctagstype = 'vala' \u003c------- Change vala\n  let type_vala.kinds    \n  ...\n```\n\nTo:\n\n```vim\nif has_key(s:ctags_types, 'vala') || executable('ctags') \u003c--- to ctags\n  let type_vala = s:TypeInfo.New()\n  let type_vala.ctagstype = 'c#'   \u003c------- To C#\n  let type_vala.kinds    \n  ...\n```\n\nThis will force C# as the language used. Not the best solution but works to some extent.\n\nIt will also complain on Plugin updates as changes are local... \n\n## Setup\nRun the shell script *`setup.sh`*.\n\n## Powerline font\n\nSet the terminal font to a powerline one. I've been using `Droid Sans Mono Dotted for Powerline Regular 11`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphastmike%2Fvimide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphastmike%2Fvimide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphastmike%2Fvimide/lists"}