All Projects → wyntau → dotfiles

wyntau / dotfiles

Licence: MIT license
Setup git, vim, zsh, SublimeText, tmux etc. using one command

Programming Languages

shell
77523 projects
Vim Script
2826 projects

Projects that are alternatives of or similar to dotfiles

dotfiles
/home/yous
Stars: ✭ 43 (-59.81%)
Mutual labels:  vimrc, zshrc, tmux-configs, gitconfig
rc.d
🛠 My rc files and other configs. Includes: Bash, Zsh, Vim, Tmux, Git, Terminal (macOS), VS Code
Stars: ✭ 32 (-70.09%)
Mutual labels:  vimrc, zshrc, gitconfig
dotfiles
shell, git, vim, tmux .etc dotfiles, managed via gnu stow
Stars: ✭ 20 (-81.31%)
Mutual labels:  vimrc, tmux-configs, gitconfig
dotfiles
My dotfiles
Stars: ✭ 22 (-79.44%)
Mutual labels:  vimrc, zshrc, gitconfig
terminal-themes
rc files for vim, tmux, iterm and zsh
Stars: ✭ 18 (-83.18%)
Mutual labels:  vimrc, zshrc, tmux-configs
dotfiles
🏡 ~/.*
Stars: ✭ 13 (-87.85%)
Mutual labels:  vimrc, zshrc
dotfiles
🏡 My dotfiles
Stars: ✭ 64 (-40.19%)
Mutual labels:  vimrc, zshrc
dotfiles
My dotfiles for oh-my-zsh, vim and tmux 📟
Stars: ✭ 23 (-78.5%)
Mutual labels:  vimrc, zshrc
Mydotfiles
All my dot configuration files.
Stars: ✭ 359 (+235.51%)
Mutual labels:  vimrc, zshrc
dotfiles
personal dotfiles with stow
Stars: ✭ 16 (-85.05%)
Mutual labels:  vimrc, gitconfig
Dotfiles
💾 Ian's dotfiles, utils, and Zsh/Vim/tmux configs
Stars: ✭ 554 (+417.76%)
Mutual labels:  vimrc, zshrc
dotfiles
My amazing vim, zsh and tmux config files
Stars: ✭ 25 (-76.64%)
Mutual labels:  vimrc, zshrc
Dotfiles
My configurations and scripts
Stars: ✭ 82 (-23.36%)
Mutual labels:  vimrc, zshrc
dotfiles
vim ⌨️ tmux 🖥 git ⑃ zsh 💤
Stars: ✭ 12 (-88.79%)
Mutual labels:  vimrc, zshrc
dotfiles
Personal set of vim, zsh, git configs and scripts.
Stars: ✭ 23 (-78.5%)
Mutual labels:  vimrc, zshrc
dotfiles
📑 .dotfiles for Bash (Linux) / ZSH (Linux) / Git Bash (Windows) / Cygwin (Windows) / Bash on Ubuntu on Windows
Stars: ✭ 175 (+63.55%)
Mutual labels:  vimrc, zshrc
Dotfiles
Hack away :)
Stars: ✭ 78 (-27.1%)
Mutual labels:  vimrc, zshrc
Dotfiles
My configuration files
Stars: ✭ 89 (-16.82%)
Mutual labels:  vimrc, zshrc
dotfiles
dotfiles
Stars: ✭ 13 (-87.85%)
Mutual labels:  vimrc, zshrc
Dev-Setup
Automation scripts for setting up a basic development environment.
Stars: ✭ 19 (-82.24%)
Mutual labels:  vimrc, zshrc

Dotfiles

Installation

git clone --depth 1 https://github.com/Wyntau/dotfiles.git ~/.dotfiles
cd ~/.dotfiles

Tasks

All vailable tasks:

You can do a specific task by run

./install.sh <taskname1>[ <taskname2> <tasknameN> ...]
  • Task editorconfig

    Install global .editorconfig to you home. You can see what config is used.

  • Task emacs

    Requirement(s): git, emacs

    Install emacs config to your ~/.emacs.d.

  • Task emacs_spacemacs

    Requirement(s): git, emacs

    Install popular spacemacs for your emacs.

  • Task fonts_source_code_pro

    Requirement(s): git

    This task will install Source Code Pro font for you.

    The new version font is compatible with powerline fonts which have some useful symbols used in some vim plugins and shell plugins, and it will update frequently. So use it to replace Powerline fonts.

    This font will be installed automatically when do task emacs_spacemacs, sublime2, sublime3, vim_plugins, and vscode.

  • Task git_alias

    Requirement(s): git

    Install gitalias for git. gitalias has many useful alias.

  • Task git_config

    Requirement(s): git

    This task will ask you what username and email you want to config global for git.

  • Task git_diff_so_fancy

    Requirement(s): git

    Install diff-so-fancy plugin for git. Please see diff-so-fancy

    If you use zsh, you can try the zsh plugin version task zsh_omz_plugins_git_diff_so_fancy or task zsh_zim_plugins_git_diff_so_fancy

  • Task git_dmtool

    Requirement(s): MAC, git, Kaleidoscope(ksdiff)

    Config git's difftool and mergetool to Kaleidoscope.

    Kaleidoscope is a sooooo excellent diff and merge tool

  • Task git_extras

    Requirement(s): git

    Install git-extras plugin for git. git-extras( Linux, OS X ) has some useful tools for git.

  • Task git_flow

    Requirement(s): git

    Install git-flow plugin for git.

    A post about git-flow: a-successful-git-branching-model

  • Task homebrew

    Requirement(s): curl

    Install homebrew for OS X and Linux(aka. linuxbrew on Linux).

  • Task sublime2

    Requirement(s): git, Sublime Text 2

    bakup your preference file first!

    If you use Sublime Text 2, this task will add user Preference, Monokai Extended colorscheme and Markdown Extended plugin which supports more files including Markdown highlight.

    After installing the preference, maybe you want to reset font_face and font_size to what you prefer in Preference.sublime-settings. Also you can see what sublime packages I used in SublimePackages.

    If you use VIM Mode in Sublime Text 2 on OS X 10.8+, when you hold h, l, j, k, the cursor will not move left right down up continually like real VIM, the solution is below.

    Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key that enables you to choose a character from a menu of options. If you are on Lion try it by pressing and holding down 'e' in any app that uses the default NSTextField for input.

    It's a nice feature and continues the blending of Mac OS X and iOS features. However, it's a nightmare to deal with in Sublime Text 2 if you're running Vintage (Vim) mode, as it means you cannot press and hold h/j/k/l to move through your file. You have to repeatedly press the keys to navigate.

    You can disable this feature for just Sublime Text 2 by issuing the following command in your terminal:

      defaults write com.sublimetext.2 ApplePressAndHoldEnabled -bool false
    

    Alternately, if you want this feature disabled globally, you can enter this:

      defaults write -g ApplePressAndHoldEnabled -bool false
    

    In either case you'll need to restart your computer for the change to take place.

    Happy coding!

  • Task sublime3

    Requirement(s): git, Sublime Text 3

    bakup your preference file first!

    If you use Sublime Text 3, this task will add user Preference, Monokai Extended colorscheme and Markdown Extended plugin which supports more files including Markdown highlight.

    After installing the preference, maybe you want to reset font_face and font_size to what you prefer in Preference.sublime-settings. Also you can see what sublime packages I used in SublimePackages.

  • Task tmux

    Requirement(s): git, tmux

    tmux plugins

  • Task vim_rc

    Requirement(s): git, vim

    This task will not install any plugin, if you want to use some plugins, do task vim_plugins.

    You can override the system vim with the new one installed by homebrew. (OS X only. This is optional, but recommended, because system vim can't use system clipbord via register +).

    brew install macvim --with-override-system-vim

    And then add the new vim PATH into your $PATH.

    Additionally, if you have installed neovim, this task will link vim to ~/.nvim, vim/vimrc to ~/.nvimrc.

    You can add your custom configs or override dotvim configs in ~/.vimrc.local.

  • Task vim_plugins

    Requirement(s): git, vim, task vim_rc

    Setup vim-plug, and load other plugins.

    We have some dotvim_group below.

    • themes
    • interface
    • explorer
    • motion
    • writing
    • git
    • syntastic
    • tmux
    • html
    • css
    • js
    • php
    • markdown
    • nginx

    In above dotvim_groups, only themes and interface will be loaded default.

    You can add already defined dotvim_group above in ~/.vimrc.plugins.before like below.

    " load some plugins groups
    let g:dotvim_groups = ['explorer', 'git', 'js']

    You can also add a virtual group common to g:dotvim_groups to include all groups, and then use -* syntax to exclude some ones like below.

    " include groups except git
    let g:dotvim_groups = ['common', '-git']

    If you want to override some plugin configs or to use some other plugins, you can add them in ~/.vimrc.plugins.local like below.

    " load your custom plugins in ~/.vimrc.plugins.local
    " Plug 'name/repo'
    
    " or override plugin configs already defined in ~/.vimrc.plugins
    " let g:some_config = 'value'

    The load order for the configuration is:

    1. .vimrc - dotvim configs
    2. .vimrc.plugins.before - user's dotvim_groups define
    3. .vimrc.plugins - dotvim plugins and plugin configs
    4. .vimrc.plugins.local - user's custom plugins and plugin configs
    5. .vimrc.local - user's custom configs
    Included plugin(s)
    " group 'themes'
    Plug 'tomasr/molokai'
    Plug 'altercation/vim-colors-solarized'
    Plug 'morhetz/gruvbox'
    Plug 'junegunn/seoul256.vim'
    Plug 'zeis/vim-kolor'
    
    " group 'interface'
    Plug 'vim-airline/vim-airline'
    Plug 'Yggdroot/indentLine'
    
    " group 'explorer'
    Plug 'schickling/vim-bufonly'
    Plug 'ctrlpvim/ctrlp.vim'
    Plug 'tacahiroy/ctrlp-funky'
    Plug 'scrooloose/nerdtree'
    Plug 'Xuyuanp/nerdtree-git-plugin'
    Plug 'dyng/ctrlsf.vim'
    Plug 't9md/vim-choosewin'
    
    " group 'motion'
    Plug 'justinmk/vim-sneak'
    Plug 'unblevable/quick-scope'
    Plug 'haya14busa/incsearch.vim'
    Plug 'easymotion/vim-easymotion'
    Plug 'haya14busa/incsearch-easymotion.vim'
    Plug 'kshenoy/vim-signature'
    Plug 'terryma/vim-expand-region'
    Plug 't9md/vim-textmanip'
    
    " group 'writing'
    Plug 'ntpeters/vim-better-whitespace'
    Plug 'Raimondi/delimitMate'
    Plug 'junegunn/vim-easy-align'
    Plug 'wellle/targets.vim'
    Plug 'tpope/vim-surround'
    Plug 'tpope/vim-repeat'
    Plug 'scrooloose/nerdcommenter'
    Plug 'terryma/vim-multiple-cursors'
    Plug 'osyo-manga/vim-over'
    
    " group 'git'
    Plug 'airblade/vim-gitgutter'
    
    " group 'syntastic'
    Plug 'scrooloose/syntastic'
    
    " group 'tmux'
    Plug 'tmux-plugins/vim-tmux'
    Plug 'tmux-plugins/vim-tmux-focus-events'
    Plug 'christoomey/vim-tmux-navigator'
    
    " group 'html'
    Plug 'tmhedberg/matchit'
    Plug 'mattn/emmet-vim'
    
    " group 'css'
    Plug 'groenewege/vim-less'
    Plug 'hail2u/vim-css3-syntax'
    Plug 'Marslo/vim-coloresque'
    
    " group 'js'
    Plug 'leafgarland/typescript-vim'
    Plug 'kchmck/vim-coffee-script'
    Plug 'pangloss/vim-javascript'
    Plug 'mxw/vim-jsx'
    Plug 'othree/yajs.vim'
    Plug 'heavenshell/vim-jsdoc'
    Plug 'mtscout6/syntastic-local-eslint.vim'
    
    " group 'php'
    Plug 'SirVer/ultisnips'
    Plug 'tobyS/vmustache'
    Plug 'tobyS/pdv'
    
    " group 'markdown'
    Plug 'godlygeek/tabular'
    Plug 'plasticboy/vim-markdown'
    
    " group 'nginx'
    Plug 'evanmiller/nginx-vim-syntax'
  • Task vim_plugins_fcitx

    Requirement(s): git, vim, task vim_plugins

    Install fcitx support plugin for vim. This plugin help you to switch input method(eg. English and Chinese keyboard) automatically when you switch vim Insert and Normal mode.

    Included plugin(s)
    " group 'fcitx'
    Plug 'CodeFalling/fcitx-vim-osx'
  • Task vim_plugins_matchtag

    Requirement(s): git, vim, curl, python, task vim_plugins

    Install html matchtag plugin for vim. Here i use python version matchtag. If you don't want to include python modules, you can also use non-python version 'gregsexton/MatchTag'

    Included plugin(s)
    " group 'matchtag'
    Plug 'valloric/MatchTagAlways'
  • Task vim_plugins_snippets

    Requirement(s): git, vim, curl, python, task vim_plugins

    Install vim-snippets plugin for vim.

    Included plugin(s)
    " group 'snippets'
    Plug 'SirVer/ultisnips'
    Plug 'honza/vim-snippets'
  • Task vim_plugins_ycm

    Requirement(s): git, vim, curl, python, task vim_plugins

    Install YouCompleteMe plugin for vim.

    If YouCompleteMe lib files not exist, or you force YouCompleteMe to recompile with export YCM_COMPILE_FORCE=true, YouCompleteMe lib files will be compiled automatically.

    Also you can set YCM_COMPLETER_FLAG with different language support.

    e.g.

    YCM_COMPLETER_FLAG="--tern-completer" ./install.sh vim_plugins_ycm

    If you want to enable --tern-completer support, You may want to have node and npm installed and .tern-project config file in you project or $HOME directory.

    Included plugin(s)
    " group 'youcompleteme'
    Plug 'Valloric/YouCompleteMe'
  • Task vscode

    Requirement(s): git, Visual Studio Code

    Install custom settings.json and keybindings.json for vscode.

    After installing the configs, maybe you want to reset editor.fontFamily and editor.fontSize to what you prefer in settings.json, and custom key bindings in keybindings.json.

  • Task zsh_omz

    Requirement(s): git, zsh

    This task will install oh-my-zsh for you.

    If you have your own configs, put them in ~/.zshrc.local, zsh will load them automatically.

    What zsh plugins are used?

    plugin require note
    colored-man-pages
    encode64
    extract
    fzf task zsh_omz_plugins_fzf
    sublime
    sudo
    zsh_reload
    zsh-syntax-highlighting
    history-substring-search
    zsh-autosuggestions disabled in Emacs eshell. TIP: If your auto suggestion's color is same with your normal command's color, please make sure you $TERM support 256 color!
    fasd(z) task zsh_plugins_fasd z is used otherwise when fasd is not installed
    git git
    gitfast git
    diff-so-fancy task zsh_omz_plugins_git_diff_so_fancy
    git-extras task git_extras
    git-flow task git_flow
    git-flow-completion task git_flow
    httpie httpie
    mosh mosh
    thefuck task zsh_omz_plugins_thefuck
    tmux tmux
    z.lua task zsh_omz_plugins_zlua
    osx OS X

    So, maybe you should install some of them to make full use of zsh.

  • Task zsh_omz_plugins_fzf

    Requirement(s): git, zsh, task zsh_omz

    Install oh-my-zsh plugin fzf

  • Task zsh_omz_plugins_git_diff_so_fancy

    Requirement(s): git, zsh, task zsh_omz

    Install oh-my-zsh plugin zsh-diff-so-fancy for git diff-so-fancy

  • Task zsh_omz_plugins_thefuck

    Requirement(s): git, zsh, task zsh_omz

    Install oh-my-zsh plugin thefuck

  • Task zsh_omz_plugins_zlua

    Requirement(s): git, zsh, lua

    Install zsh plugin z.lua

  • Task zsh_plugins_fasd

    Requirement(s): git, zsh

    Install zsh plugin fasd

  • Task zsh_zim

    Requirement(s): git, zsh

    This task will install zimfw for you.

    If you have your own configs, put them in ~/.zimrc.local, zsh will load them automatically.

  • Task zsh_zim_plugins_fzf

    Requirement(s): git, zsh, curl

    Install oh-my-zsh plugin fzf for zim.

  • Task zsh_zim_plugins_git_diff_so_fancy

    Requirement(s): git, zsh, task zsh_zim

    Install zimfw plugin zsh-diff-so-fancy for git diff-so-fancy

  • Task zsh_zim_plugins_omz_tmux

    Requirement(s): git, zsh, tmux

    Iinstall the tmux plugin(oh-my-zsh/plugins/tmux) included in oh-my-zsh for zimfw.

  • Task zsh_zim_plugins_pure

    Requirement(s): git, zsh

    Install zsh prompt theme pure for zimfw

  • Task zsh_zim_plugins_zlua

    Requirement(s): git, zsh, lua

    Install zsh plugin z.lua for zimfw

License

The MIT License (MIT)

Copyright (c) 2013 - present Wyntau [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].