Some settings for development environment.
- .vimrc
- .tmux.conf
- .gitconfig
- bin -
- gwnt
- jswnt
- pywnt
- .jshintrc
- .eslintrc
- script -
- clean.sh
- init.sh
- deploy.sh
Basic vim config.
git clone https://github.com/bbcyyb/vimsettings.git
$ sudo ./clean.sh
$ sudo ./init.sh
$ sudo ./deploy.sh
:PluginInstall
export GOPROXY=https://goproxy.io
export GO111MODULE=on
Basic tmux config, need add below code into .bashrc before using tmux.
export EDITOR='vim'
alias tmux='tmux -2'
Basic git config.
Alias for search tools which use grep command on linux. Need add below code into .bashrc before using gwntj.
export PATH=$PATH:/home/kevin/bin
jshint config, used by RrackHD project.
eslint config, need to config this if you want to use react.
How to set up Vim for React.js
React.js is gaining a lot of traction lately, but developing with its inline-XML-in-JS requires a few tweaks to Vim for a smooth experience.
To get the syntax highlighting to look right, use mxw's Vim JSX highlighting.
If you use Vundle, add:
Plugin 'mxw/vim-jsx'
Other plugin loaders, see the GitHub page.
If you use JSX syntax in .js files, which is now becoming standard, add:
let g:jsx_ext_required = 0 " Allow JSX in normal JS files
to your vimrc.
If you use Syntastic, you'll notice immediate errors wherever XML nodes appear, which is to be expected. Here's a work around.
Update 3/30/15: I've added instructions on using ESLint instead of the old wrapper package.
Install eslint, babel-eslint (for ES6 support), and eslint-plugin-react:
npm install -g eslint
npm install -g babel-eslint
npm install -g eslint-plugin-react
Create a config like this in your project's .eslintrc
, or do so globally by placing it in ~/.eslintrc
:
{
"parser": "babel-eslint",
"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
}
}
Finally, configure Syntastic to use ESLint:
let g:syntastic_javascript_checkers = ['eslint']
After adding the line below into .tmux.conf
set -g default-terminal "screen-256color"
You still need to add the line below into .vimrc
set term=screen-256color
Finally, the alias need to be added to .bashrc
alias tmux='tmux -2'