##Base
sudo apt-get install vim
sudo apt-get install vim-gnome
sudo apt-get install ctags
##Install spf13-vim
https://github.com/spf13/spf13-vim
##Change nerdtree triger to ,nn
vi ~/.vimrc
then find nerdtree config changer trigger to ,nn, change show hidden to 1.
##Add go support
echo Bundle \'fatih/vim-go\' >> ~/.vimrc.bundles.local
vi
:PluginInstall
:GoInstallBinaries
##React-native things
npm install -g eslint
npm install -g babel-eslint
npm install -g eslint-plugin-react
echo Bundle \'mxw/vim-jsx\' >> ~/.vimrc.bundles.local
vi
:PluginInstall
let g:jsx_ext_required = 0 " Allow JSX in normal JS files
{
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
}
"env": {
"browser": true,
"node": true
},
"settings": {
"ecmascript": 6,
"jsx": true
},
"plugins": [
"react"
],
"rules": {
"strict": 0,
"quotes": 0,
"no-unused-vars": 0,
"camelcase": 0,
"no-underscore-dangle": 0
}
}