This project is a lightweight, Neovim integrated development environment (IDE) for Golang development.
~/.bashrc
(Ubuntu) or ~/.bash_profile
(Mac):export GOPATH=$HOME/go
export PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
(make sure to run source ~/.bashrc
/ source ~/.bash_profile
or open a new terminal to apply changes)
go get -u github.com/stamblerre/gocode
pip3 install pynvim
cd ~/Downloads/; wget https://raw.githubusercontent.com/plentiform/go-ide/master/init.vim
or
cd ~/Downloads/; curl -o init.vim https://raw.githubusercontent.com/plentiform/go-ide/master/init.vim
mkdir -p ~/.config/nvim
mv ~/Downloads/init.vim ~/.config/nvim/.
nvim ~/.config/nvim/init.vim
:
then type PlugInstall
and press Enter:
then type GoInstallBinaries
and press Enternt
p
/
then type your search terms (find terms Enter, next n
, previous N
, clear highlight Ctrl-l
)gd
(traverse back with Ctrl-o
)j
, previous input Ctrl-k
)