https://github.com/nosarthur/dotfiles-old
bash, git, and vim settings
https://github.com/nosarthur/dotfiles-old
vim vimrc
Last synced: about 2 months ago
JSON representation
bash, git, and vim settings
- Host: GitHub
- URL: https://github.com/nosarthur/dotfiles-old
- Owner: nosarthur
- Created: 2016-11-27T05:36:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T15:14:01.000Z (about 5 years ago)
- Last Synced: 2025-03-24T04:18:07.003Z (over 1 year ago)
- Topics: vim, vimrc
- Language: Shell
- Homepage:
- Size: 770 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
# plugins
I use vim-plug as manager
```
:source %
:PlugInstall
:CocInstall coc-pyright
:CocInstall coc-word
:CocInstall coc-json
```
# ctags and gotags
http://ctags.sourceforge.net
```
go get -u github.com/jstemmer/gotags
go get -u github.com/golang/lint/golint
go get -u github.com/kisielk/errcheck
go get -u golang.org/x/tools/cmd/goimports
pip install flake8
```
Then inside vim
```
:GoInstallBinaries
```
For [coc.nvim](https://github.com/neoclide/coc.nvim)
```
curl -sL install-node.now.sh/lts | bash
```
# link vimrc
First rename `dotfiles` as `.vim`
```
ln -s ~/dotfiles/vimrc ~/.vimrc
mv ~/dotfiles/bash/* ~/
```