Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix on #12,#13,#14 #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ Fork the repo, and then clone it to `~/.vim_go_runtime`. Once done, just run ins

**NOTE:** You system's Vim configuration will NOT be changed i.e. it is safe to install.

**REQUIREMENT:** vim-go-ide uses [pathogen](https://github.com/tpope/vim-pathogen) to manage plugins. You need to have pathogen installed on your machine (see https://github.com/farazdagi/vim-go-ide/issues/12).

### 2. Run your newly installed Vim configuration:

Remember that your system's Vim config files remain untouched? During installation `.vimrc.go` is created. Let's use it:
Expand Down
8 changes: 7 additions & 1 deletion bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
INSTALL_PATH="$(cd $(dirname $0)/../ ; pwd -P )"

cat > "$HOME/.vimrc.go" <<EOF
set runtimepath^="$INSTALL_PATH"
let &rtp="$INSTALL_PATH".",".&rtp

source $INSTALL_PATH/vimrc/basic.vim
source $INSTALL_PATH/vimrc/filetypes.vim

" Load pathogen paths
call pathogen#infect('$INSTALL_PATH/bundle/forked/{}')
call pathogen#infect('$INSTALL_PATH/bundle/pristine/{}')
call pathogen#helptags()

source $INSTALL_PATH/vimrc/plugins.vim
source $INSTALL_PATH/vimrc/extended.vim

Expand Down
5 changes: 0 additions & 5 deletions vimrc/plugins.vim
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
" Load pathogen paths
call pathogen#infect('~/.vim_go_runtime/bundle/forked/{}')
call pathogen#infect('~/.vim_go_runtime/bundle/pristine/{}')
call pathogen#helptags()

"------------------------------------------------------------------------------
" Custom color scheme
"------------------------------------------------------------------------------
Expand Down