{"id":20760562,"url":"https://github.com/swdotcom/swdc-vim","last_synced_at":"2025-08-30T10:40:11.437Z","repository":{"id":34381557,"uuid":"127756526","full_name":"swdotcom/swdc-vim","owner":"swdotcom","description":"Track your programming activity in real-time in Vim","archived":false,"fork":false,"pushed_at":"2020-06-20T00:16:30.000Z","size":70,"stargazers_count":20,"open_issues_count":6,"forks_count":2,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-04-30T05:48:43.531Z","etag":null,"topics":["keystrokes","productivity","productivity-timer","time-tracking","vim","vim-plugin"],"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/swdotcom.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}},"created_at":"2018-04-02T12:58:47.000Z","updated_at":"2023-06-30T22:19:29.000Z","dependencies_parsed_at":"2022-08-08T21:30:15.763Z","dependency_job_id":null,"html_url":"https://github.com/swdotcom/swdc-vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/swdotcom/swdc-vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swdotcom%2Fswdc-vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swdotcom%2Fswdc-vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swdotcom%2Fswdc-vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swdotcom%2Fswdc-vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swdotcom","download_url":"https://codeload.github.com/swdotcom/swdc-vim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swdotcom%2Fswdc-vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272839664,"owners_count":25001862,"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-30T02:00:09.474Z","response_time":77,"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":["keystrokes","productivity","productivity-timer","time-tracking","vim","vim-plugin"],"created_at":"2024-11-17T10:14:24.082Z","updated_at":"2025-08-30T10:40:11.389Z","avatar_url":"https://github.com/swdotcom.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Update: 5/3\n**We are NOT currently maintaining this plugin. We will revisit adding support for Vim in the near future.**\n\n# Code Time for Vim\n\n\u003e **Code Time** is an open source plugin that provides programming metrics right in your code editor.\n\n\u003c!-- \u003cp align=\"center\" style=\"margin: 0 10%\"\u003e\n  \u003cimg src=\"\" alt=\"Code Time for Vim\" /\u003e\n\u003c/p\u003e --\u003e\n\n## Power up your development\n\n**In-editor dashboard**\nGet daily and weekly reports of your programming activity right in your code editor.\n\n**Status bar metrics**\nAfter installing our plugin, your status bar will show real-time metrics about time coded per day.\n\n**Weekly email reports**\nGet a weekly report delivered right to your email inbox.\n\n**Data visualizations**\nGo to our web app to get simple data visualizations, such as a rolling heatmap of your best programming times by hour of the day.\n\n**Calendar integration**\nIntegrate with Google Calendar to automatically set calendar events to protect your best programming times from meetings and interrupts.\n\n**More stats**\nSee your best music for coding and the speed, frequency, and top files across your commits.\n\n## Why you should try it out\n\n-   Automatic time reports by project\n-   See what time you code your best—find your “flow”\n-   Defend your best code times against meetings and interrupts\n-   Find out what you can learn from your data\n\n## It’s safe, secure, and free\n\n**We never access your code**\nWe do not process, send, or store your proprietary code. We only provide metrics about programming, and we make it easy to see the data we collect. \n\n**Your data is private**\nWe will never share your individually identifiable data with your boss. In the future, we will roll up data into groups and teams but we will keep your data anonymized.\n\n**Free for you, forever**\nWe provide 90 days of data history for free, forever. In the future, we will provide premium plans for advanced features and historical data access.\n\n\u003c!--- Begin: setup ---\u003e\n\n## Getting started\n\nThe Code Time plugin for Vim can be installed either manually or via your plugin manager of choice.\n\n### Manually\n1. Create or find your `.vim` directory\n2. Create a directory called `bundle` inside of your `.vim` folder\n3. Clone the Code Time plugin for Vim to your `.vim/bundle` directory:\n\n```bash\ngit clone swdotcom/swdc-vim\n```\n\n4. If you haven't created a `.vimrc` file, you'll have to create it first in your home directory\n5. Set the runtime path in your .vimrc file: \n\n```\nset runtimepath^=~/.vim/bundle/swdc-vim.vim\n```\n\n6. Source your .vimrc in Vim: `:source ~/.vimrc`\n7. Log in: `:SoftwareLogin`\n\n### With VimPlug \n1. Add `Plug 'swdotcom/swdc-vim'` to your `.vimrc` so it looks something like this: \n\n```\ncall plug#begin('~/.vim/plugins')\nPlug 'swdotcom/swdc-vim'\ncall plug#end()\n```\n\n2. Source your .vimrc in Vim: `:source ~/.vimrc`\n3. Install Code Time with `:PlugInstall`\n4. Log in: `:SoftwareLogin`\n\n### With Vundle\n1. Add `Plugin 'swdotcom/swdc-vim'` to your `.vimrc` so it looks something like this:\n\n```\nset nocompatiblefiletype offset rtp+=~/.vim/bundle/Vundle.vimcall \nvundle#begin()\nPlugin 'VundleVim/Vundle.vim'\nPlugin 'swdotcom/swdc-vim'\ncall vundle#end()\n```\n\n2. Install Code Time with `:PluginInstall`\n3. Log in: `:SoftwareLogin`\n\n### With Pathogen\n1. Run the following commands in your terminal: \n\n```\ncd ~/.vim/bundlegit\nclone https://github.com/swdotcom/swdc-vim.git\n```\n\n2. If you're a new Pathogen user, set up your `.vimrc` so it looks something like this:\n\n```\nexecute pathogen#infect() syntax on filetype plugin indent on\n```\n\n3. Log in: `:SoftwareLogin`\n\n### With NeoBundle\n\n1. Add `NeoBundle 'swdotcom/swdc-vim'` to your `.vimrc` so it looks something like this:\n\n```\nset runtimepath+=~/.vim/bundle/neobundle.vim/\ncall neobundle#begin(expand('~/.vim/bundle/'))\nNeoBundleFetch 'Shougo/neobundle.vim'\nNeoBundle 'swdotcom/swdc-vim'\ncall neobundle#end()‍\nfiletype plugin indent on\n```\n\n2. Install Code Time with ```:NeoBundleInstall```\n3. Log in: `:SoftwareLogin`‍\n\n\u003c!--- End: setup ---\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswdotcom%2Fswdc-vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswdotcom%2Fswdc-vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswdotcom%2Fswdc-vim/lists"}