├── .gitignore ├── .gitmodules ├── README.md ├── dotrc ├── jshintrc └── npmrc ├── install.sh ├── scripts ├── chrome_osx.sh └── gtag.sh ├── subl └── Preferences.sublime-settings ├── terminal ├── README.md ├── gitconfig ├── tmux.conf └── zsh │ ├── dircolors.ansi-dark │ ├── zshrc │ └── zshrc.example └── ubuntu-gui ├── fonts └── Monaco.ttf ├── system └── 69-language-selector-zh-cn.conf └── terminator ├── config └── config.solarized.dark /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | ~.bak 3 | *.py[co] 4 | vim/bundle/* 5 | notice 6 | err.log 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /dotrc/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/dotrc/jshintrc -------------------------------------------------------------------------------- /dotrc/npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/dotrc/npmrc -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /scripts/chrome_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/scripts/chrome_osx.sh -------------------------------------------------------------------------------- /scripts/gtag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/scripts/gtag.sh -------------------------------------------------------------------------------- /subl/Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/subl/Preferences.sublime-settings -------------------------------------------------------------------------------- /terminal/README.md: -------------------------------------------------------------------------------- 1 | 终端开发环境配置 2 | --- 3 | -------------------------------------------------------------------------------- /terminal/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/terminal/gitconfig -------------------------------------------------------------------------------- /terminal/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/terminal/tmux.conf -------------------------------------------------------------------------------- /terminal/zsh/dircolors.ansi-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/terminal/zsh/dircolors.ansi-dark -------------------------------------------------------------------------------- /terminal/zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/terminal/zsh/zshrc -------------------------------------------------------------------------------- /terminal/zsh/zshrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/terminal/zsh/zshrc.example -------------------------------------------------------------------------------- /ubuntu-gui/fonts/Monaco.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/ubuntu-gui/fonts/Monaco.ttf -------------------------------------------------------------------------------- /ubuntu-gui/system/69-language-selector-zh-cn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/ubuntu-gui/system/69-language-selector-zh-cn.conf -------------------------------------------------------------------------------- /ubuntu-gui/terminator/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/ubuntu-gui/terminator/config -------------------------------------------------------------------------------- /ubuntu-gui/terminator/config.solarized.dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangwentong/dotfiles/HEAD/ubuntu-gui/terminator/config.solarized.dark --------------------------------------------------------------------------------