All Projects → yous → dotfiles

yous / dotfiles

Licence: MIT license
/home/yous

Programming Languages

shell
77523 projects
Vim Script
2826 projects
perl
6916 projects

Projects that are alternatives of or similar to dotfiles

dotfiles
Setup git, vim, zsh, SublimeText, tmux etc. using one command
Stars: ✭ 107 (+148.84%)
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 (-25.58%)
Mutual labels:  vimrc, bashrc, zshrc, gitconfig
dotfiles
my personal dotfiles for tmux, bash, vim and git
Stars: ✭ 73 (+69.77%)
Mutual labels:  vimrc, bashrc, gitconfig
dotfiles
A total nord dotfiles used by me. Forever work in progress.
Stars: ✭ 35 (-18.6%)
Mutual labels:  vimrc, bashrc, zshrc
swiss-army
Ansible-driven configuration management for maintaining a preferred environment (base system and app dotfiles / configurations)
Stars: ✭ 44 (+2.33%)
Mutual labels:  vimrc, bashrc, gitconfig
anyrc
🐚 Bring your shell environment to anywhere
Stars: ✭ 28 (-34.88%)
Mutual labels:  vimrc, bashrc, zshrc
dotfiles
shell, git, vim, tmux .etc dotfiles, managed via gnu stow
Stars: ✭ 20 (-53.49%)
Mutual labels:  vimrc, tmux-configs, gitconfig
terminal-themes
rc files for vim, tmux, iterm and zsh
Stars: ✭ 18 (-58.14%)
Mutual labels:  vimrc, zshrc, tmux-configs
dotfiles
My dotfiles
Stars: ✭ 22 (-48.84%)
Mutual labels:  vimrc, zshrc, gitconfig
eRCaGuy dotfiles
.bashrc file, terminal prompt that shows current git branch, Arduino setup, Eclipse setup, git diff with line numbers, helpful scripts, improved Linux productivity, etc.
Stars: ✭ 84 (+95.35%)
Mutual labels:  config, bashrc, gitconfig
dotfiles
My personal monorepo: dotfiles, /etc-files, single-file scripts, vim plugins, webexts/userscripts, xmonad config, all that stuff…
Stars: ✭ 84 (+95.35%)
Mutual labels:  config, vimrc, bashrc
Dotfiles
⚡️ Awesome configurations for the development environments
Stars: ✭ 137 (+218.6%)
Mutual labels:  config, vimrc, zshrc
Dot-It-Up
A collection of dotfile scripts, plugins, and clever hacks so that you can become the master of your own OS! 🚀
Stars: ✭ 254 (+490.7%)
Mutual labels:  vimrc, bashrc, zshrc
dotfiles
personal dotfiles with stow
Stars: ✭ 16 (-62.79%)
Mutual labels:  vimrc, bashrc, gitconfig
dotfiles
📑 .dotfiles for Bash (Linux) / ZSH (Linux) / Git Bash (Windows) / Cygwin (Windows) / Bash on Ubuntu on Windows
Stars: ✭ 175 (+306.98%)
Mutual labels:  vimrc, bashrc, zshrc
dotfiles
My dotfiles based on Makefile
Stars: ✭ 150 (+248.84%)
Mutual labels:  config, zshrc
config
holy cow, wholly config! Vim, Zshell, Ack, & the rest of my dot-files.
Stars: ✭ 21 (-51.16%)
Mutual labels:  config, vimrc
dotfiles
.foos for foos & more
Stars: ✭ 21 (-51.16%)
Mutual labels:  vimrc, bashrc
Dotfiles
My configuration files
Stars: ✭ 89 (+106.98%)
Mutual labels:  vimrc, zshrc
parse-git-config
Parse `.git/config` into a JavaScript object. sync or async.
Stars: ✭ 55 (+27.91%)
Mutual labels:  config, gitconfig

dotfiles

Build Status

@yous' dotfiles.

Table of Contents

Requirements

Installation

Clone this repository:

git clone https://github.com/yous/dotfiles.git
cd dotfiles

For available install options:

./install.sh
Command option Description
link Install symbolic links
brew Install Homebrew on macOS (or Linux)
chruby Install chruby
formulae Install Homebrew formulae using Brewfile
pwndbg Install pwndbg
pyenv Install pyenv with pyenv-virtualenv
rbenv Install rbenv
ruby-install Install ruby-install
rustup Install rustup
rvm Install RVM
weechat Install WeeChat configuration

In Windows, use install.bat. It links files into the user's home directory.

Git

Set user-specific configurations on ~/.gitconfig.user:

[user]
	name = Your Name
	email = [email protected]

If you are using a public PGP key:

[user]
	signingkey = YOUR KEY

You can also sign your each commit automatically:

[commit]
	gpgsign = true

For more information about signing commits, see A Git Horror Story: Repository Integrity With Signed Commits.

If you want to use Gmail for git send-email,

[sendemail]
	smtpEncryption = tls
	smtpServer = smtp.gmail.com
	smtpServerPort = 587
	smtpUser = [email protected]

For more information, see the documentation for git-send-email.

Set local-specific configurations on ~/.gitconfig.local:

[includeIf "gitdir:~/to/group/"]
	path = /path/to/foo.inc

For more information, see conditional includes section in the git-config documentation.

If you want to use latest release of Git for Ubuntu:

sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update

Visit the PPA of Git for Ubuntu for more information.

Homebrew

If you want to install Homebrew or Homebrew on Linux,

./install.sh brew

Then install Homebrew formulae with:

./install.sh formulae

On macOS prior to Mojave, install Rust using rustup, and then install several utilities using cargo:

cargo install bat fd-find gitui ripgrep

Ruby

chruby

If you want to install chruby, if you're on macOS,

brew install ruby-install
brew install chruby

Otherwise, install ruby-install first, if you're on Arch Linux,

yaourt -S ruby-install

Otherwise,

./install.sh ruby-install

Then install chruby,

./install.sh chruby

RVM

If you want to install RVM,

./install.sh rvm

Update RVM with:

rvm get stable

rbenv

If you want to install rbenv,

./install.sh rbenv

Rust

If you want to install rustup,

./install.sh rustup

Python

If you want to install pyenv and pyenv-virtualenv,

./install.sh pyenv

Zsh

To use Zsh as default shell,

chsh -s /bin/zsh

If you use custom Zsh like compiled one by Homebrew, add /usr/local/bin/zsh to /etc/shells and

chsh -s /usr/local/bin/zsh

To update Zsh plugins:

zinit update --all

To update Zinit itself:

zinit self-update

To make RVM works with Vim on OS X Yosemite or earlier, move /etc/zshenv to /etc/zshrc as Tim Pope mentioned.

sudo mv /etc/zshenv /etc/zshrc

Vim

To install Vim plugins,

:PlugInstall

You should install Exuberant Ctags to use vim-gutentags. You should install Node.js to use coc.nvim.

To update Vim plugins:

:PlugUpdate

To update vim-plug:

:PlugUpgrade

For additional syntax checkers for coc.nvim, ALE, or Syntastic:

  • C, C++
    • clang-check: brew install llvm
    • clang-tidy: brew install llvm
    • cppcheck: brew install cppcheck
  • CSS
    • stylelint: npm install -g stylelint stylelint-config-standard
  • JavaScript
    • ESLint: npm install -g eslint
  • JSON
    • JSONLint: npm install -g jsonlint
  • Python
    • flake8: pip install flake8
    • jedi: pip install jedi
  • Ruby
    • RuboCop: gem install rubocop
    • Solargraph: gem install solargraph
  • SASS, SCSS
    • stylelint: npm install -g stylelint stylelint-config-sass-guidelines

Neovim

To use Python 2 or 3 via pyenv in Neovim,

pyenv install 2.7.18
pyenv virtualenv 2.7.18 neovim2
pyenv activate neovim2
pip install pynvim

pyenv install 3.8.2
pyenv virtualenv 3.8.2 neovim3
pyenv activate neovim3
pip install pynvim

To use Ruby in Neovim,

gem install neovim

To use Node.js in Neovim,

npm install -g neovim

WeeChat

To install WeeChat configuration,

./install.sh weechat

Then install scripts:

/script install autosort.py buffers.pl colorize_nicks.py iset.pl

To update WeeChat scripts:

/script update
/script upgrade

Tools

pwndbg

If you want to install pwndbg,

./install.sh pwndbg

IntelliJ, Android Studio

To use Tomorrow Theme:

  1. Download JetBrains/settings.jar from chriskempson/tomorrow-theme.
  2. Open File > Import Settings… in IntelliJ or Android Studio.
  3. Select downloaded settings.jar.
  4. Open Settings > Editor > Colors Scheme.
  5. Select one of Tomorrow Theme.

iTerm2

To use Tomorrow Theme:

  1. Download schemes/Tomorrow*.itermcolors from mbadolato/iTerm2-Color-Schemes.
  2. Open Preferences… > Profiles > Colors.
  3. Click 'Load Presets…' and select 'Import…'.
  4. Select downloaded Tomorrow*.itermcolors.
  5. Click 'Load Presets…' again and select one of Tomorrow Theme.

License

Copyright © Chayoung You. See LICENSE.txt for details.

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].