https://github.com/taewoong2318/dotvim
Vim configuration with portability in mind, for Linux, macOS, and Windows
https://github.com/taewoong2318/dotvim
dotfiles vim vim-configuration vimrc
Last synced: 2 months ago
JSON representation
Vim configuration with portability in mind, for Linux, macOS, and Windows
- Host: GitHub
- URL: https://github.com/taewoong2318/dotvim
- Owner: taewoong2318
- License: mit
- Created: 2025-04-22T17:19:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-15T19:47:33.000Z (about 1 year ago)
- Last Synced: 2025-06-15T21:18:32.343Z (about 1 year ago)
- Topics: dotfiles, vim, vim-configuration, vimrc
- Language: Vim Script
- Homepage:
- Size: 583 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotvim
Taewoong's Vim configuration
## Requirements
- Git
- Vim 9.0 or later
## Installation
Clone this repository to either of the following directories:
| OS | Vim | Location |
| ----------- | ---------- | ---------------------------------- |
| macOS/Linux | >= 9.1.327 | `~/.vim` or `$XDG_CONFIG_HOME/vim` |
| macOS/Linux | < 9.1.327 | `~/.vim` |
| Windows | | `%USERPROFILE%\vimfiles` |
Then move into the repository and update submodules to install plugins:
git submodule update --init
## Updating
Pull new changes, update submodules, and clean unused submodules:
git pull
git submodule update --init
git clean -dff
Note that `git clean -dff` will remove **all untracked files and directories**
in the local repository. To check what will be removed, run `git clean -dffn`.
## Help Tags
Run the following command inside Vim to generate tags for the plugin
documentations:
:helptags ALL