https://github.com/danedens/mac_dive_vimrc
props to Pandoks for the head start
https://github.com/danedens/mac_dive_vimrc
Last synced: 9 months ago
JSON representation
props to Pandoks for the head start
- Host: GitHub
- URL: https://github.com/danedens/mac_dive_vimrc
- Owner: DanEdens
- Created: 2022-11-03T01:56:47.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-25T22:29:00.000Z (about 4 years ago)
- Last Synced: 2025-02-10T02:41:21.311Z (over 1 year ago)
- Size: 2.83 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vimrc
My personal vim setup.
Some of the keybinds only work on MacOS but I'll update them when I have time.
This is primarily for my own personal use when I'm active on a new machine or sshing into another computer but you are welcome to steal it.
Must have Vim version 8 or more.
# Installation
**Preparation:**
This makes room for the install and deletes previous vim configs and git inits so backup those files before running this command.
```sh
rm -rf ~/.git ~/.vim ~/.vimrc
```
**Install Settings:**
```sh
git clone https://github.com/Pandoks/vimrc.git
mv vimrc/.* ~ && rm -rf vimrc ~/.git
```
# Coming Soon
**Installer:**
Install the vim configs without needing to copy and paste.
**COC.nvim:**
Install coc.nvim without needing sudo
# Install/Update vim Without sudo:
If needed, here's a note to installing vim without root access to the package manager.
**Install:**
```sh
cd ~ && mkdir .local
cd .local && git clone https://github.com/vim/vim.git
cd vim/src && ./configure --prefix=$HOME/.local/vim
make && make install
```
**Configure:**
After installation, add to .bashrc or .zshrc depending on what shell the system is using:
```sh
alias vim="~/.local/vim/bin/vim"
```