Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/twatanabe/vim-settings
Vim settings with useful helpers and golang implementation
https://github.com/twatanabe/vim-settings
Last synced: about 1 month ago
JSON representation
Vim settings with useful helpers and golang implementation
- Host: GitHub
- URL: https://github.com/twatanabe/vim-settings
- Owner: twatanabe
- Created: 2018-08-14T02:55:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-12T20:49:37.000Z (over 6 years ago)
- Last Synced: 2023-09-20T08:25:18.062Z (over 1 year ago)
- Language: Vim script
- Homepage:
- Size: 329 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vim Settings
* Go Plugin (Build, Lint, Test)
* Molokai Color Theme
* NeardTREE, TagBar Toggler
* Multi-row Comment/Uncomment Shortcut
* Tab, Error Switch Shortcuts
* Type Auto-Completion
* Syntax Highlights![UI](https://raw.githubusercontent.com/code-badger/vim-settings/master/ui_sample.png)
# Setup
```
apt-get update
apt-get install git vim golang curl vim-nox ctags -y
git clone https://github.com/code-badger/vim-settings.git
cp vim-settings/.vimrc ~/.vimrc
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
:PlugInstall (within vim)
mkdir -p ~/go/{src,pkg,bin}
export GOPATH="$HOME/go"
:GoInstallBinaries (within vim)
```