All Projects → lighttiger2505 → .dotfiles

lighttiger2505 / .dotfiles

Licence: other
my vim settings in the .dotfiles

Programming Languages

Vim Script
2826 projects
shell
77523 projects

.dotfiles

lighttiger's cli

Installation

$ cd ~/.dotfiles
$ make init

Install requirement

  • vim
  • neovim
  • zsh
  • zplug
  • pyenv
  • pyenv-vertualenv
  • tmux
  • the silver searcher(ga) or The Platinum Searcher(pt)

Install python

# Install python version
pyenv install 2.7.12 # latest version
pyenv install 3.4.5 # latest version

# Create pyenv-vertualevn for neovim reference
pyenv virtualenv 2.7.12 neovim2
pyenv virtualenv 3.4.5 neovim3

# Install neovim client and requirement middle 
pyenv activate neovim2
pip install -r ~/.dotfiles/python/neovim2_requirements.txt
pyenv which python  # Note the path
pyenv deactivate

pyenv activate neovim3
pip install -r ~/.dotfiles/python/neovim3_requirements.txt
pyenv which python  # Note the path
pyenv deactivate

Synbolic link

  • .vim
  • .vimrc
  • .zshrc
  • .zshenv
  • .zshrc.osx
  • .init.vim
  • .tmux.conf
ln -s ~/.dotfiles/.vim ~/.vim
ln -s ~/.dotfiles/.vimrc ~/.vimrc
ln -s ~/.dotfiles/.zshrc ~/.zshrc
ln -s ~/.dotfiles/.zshenv ~/.zshenv
ln -s ~/.dotfiles/.zshrc.osx ~/.zshrc.osx
ln -s ~/.vimrc ~/.config/nvim/init.vim
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
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].