2016/05/11

[Vim] Vundle (Vim Plugin Manager)

為了替vim加入輔助不同語言開發的plugin
爬文所發現的plugin manager
基本上想要加上新的vim plugin,只要在.vimrc設定檔中加入Plugin 'plugin name'
再到vim裡面執行:PluginInstall,就會自動幫你處理到好,非常方便。


2016/04/17

[Go] Golang Learning Resource


[Websites]


1. https://github.com/dariubs/GoBooks
2. http://www.golang-book.com/
3. https://github.com/ardanlabs/gotraining/tree/master/reading?utm_content=buffere9092&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer


[Books]


1. The Little Go Book (從變數命名判斷作者一定是七龍珠迷...)
http://openmymind.net/The-Little-Go-Book/


[Reference]


1. Golang.org
2. Go by Example
3. Go Tutorial
4. GoDoc

to be continued...

[Go] Golang plugin for Intellij platform


Reference: https://plugins.jetbrains.com/plugin/5047
Project on Github: https://github.com/go-lang-plugin-org/go-lang-idea-plugin

Link below is the autocompletion tool Gocode for Golang
https://github.com/nsf/gocode


(4/18 update) 

Golang plugins for Atom Editor



Golang plugin for Visual Studio Code

2016/03/29

Virtual Machine Image



可以下載Linux Image的網站
對於偶爾會用到Linux做為測試環境
卻又不想自己在虛擬機(VMware/VirtualBox)安裝OS的人是個方便的選擇

2016/03/01

[Linux] vim-youcompleteme installation



Project: http://valloric.github.io/YouCompleteMe/#ubuntu-linux-x64-installation

一個讓vim具備程式碼自動完成的plugin


(每年都有學弟妹抱怨在Linux上拿vim coding很難用...我想大概跟打洛克人一樣,素身X當然不好用啊www)

除了透過專案網址提供的方法,Ubuntu/Linux Mint也可以利用下列方式安裝:

sudo apt-get install vim-youcompleteme
sudo apt-get install vim-addon-manager
vam install youcompleteme

Reference: http://blog.csdn.net/pdcxs007/article/details/49103981