-
Notifications
You must be signed in to change notification settings - Fork 0
setekhid/_vim
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
#!/bin/sh # fetching all git sub modules git submodule update --init --recursive # install ctags for tagbar brew install ctags # build c environment brew install \ cscope \ clang # build golang environment brew install golang GOPATH="~/.GOPATH" PATH="$PATH:$GOPATH/bin" mkdir -p $GOPATH vim \ -c 'GoInstallBinaries' \ -c 'qa' # build haskell environment brew install haskell-stack PATH="$PATH:$HOME/.local/bin" stack setup stack install \ ghc-mod \ hdevtools ( \ cd bundle/lushtags && \ stack setup && \ stack build && \ stack install \ ) # install shellcheck for syntastic brew install shellcheck # build ocaml environment (drafts) # brew install ocaml opam # opam init # opam install merlin # link .vimrc and .gvimrc ln -s .vim/_vimrc ~/.vimrc ln -s .vim/_gvimrc ~/.gvimrc
About
my ~/.vim folder, for now I use vim to write golang and haskell mainly. and a few c/c++ files. merlin is a great project, I use it before and you just need uncomment it to write ocaml.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published