All Projects → wangyida → terminal-themes

wangyida / terminal-themes

Licence: other
rc files for vim, tmux, iterm and zsh

Programming Languages

Vim Script
2826 projects
shell
77523 projects
perl
6916 projects

Projects that are alternatives of or similar to terminal-themes

dotfiles
Setup git, vim, zsh, SublimeText, tmux etc. using one command
Stars: ✭ 107 (+494.44%)
Mutual labels:  vimrc, zshrc, tmux-configs
dotfiles
/home/yous
Stars: ✭ 43 (+138.89%)
Mutual labels:  vimrc, zshrc, tmux-configs
dotfiles
My dotfiles for oh-my-zsh, vim and tmux 📟
Stars: ✭ 23 (+27.78%)
Mutual labels:  vimrc, zshrc
dotfiles
📑 .dotfiles for Bash (Linux) / ZSH (Linux) / Git Bash (Windows) / Cygwin (Windows) / Bash on Ubuntu on Windows
Stars: ✭ 175 (+872.22%)
Mutual labels:  vimrc, zshrc
Dotfiles
Get ready for dotfiles. Contains i3, i3blocks, rofi, dunst, picom, vim, tmux, and zsh.
Stars: ✭ 985 (+5372.22%)
Mutual labels:  vimrc, zshrc
dotfiles
🏡 ~/.*
Stars: ✭ 13 (-27.78%)
Mutual labels:  vimrc, zshrc
dotfiles
🏡 My dotfiles
Stars: ✭ 64 (+255.56%)
Mutual labels:  vimrc, zshrc
Dotfiles
💾 Ian's dotfiles, utils, and Zsh/Vim/tmux configs
Stars: ✭ 554 (+2977.78%)
Mutual labels:  vimrc, zshrc
Dev-Setup
Automation scripts for setting up a basic development environment.
Stars: ✭ 19 (+5.56%)
Mutual labels:  vimrc, zshrc
Dotfiles
My configuration files
Stars: ✭ 89 (+394.44%)
Mutual labels:  vimrc, zshrc
Dotfiles
My configurations and scripts
Stars: ✭ 82 (+355.56%)
Mutual labels:  vimrc, zshrc
Dotfiles
⚡️ Awesome configurations for the development environments
Stars: ✭ 137 (+661.11%)
Mutual labels:  vimrc, zshrc
dotfiles
My dotfiles
Stars: ✭ 22 (+22.22%)
Mutual labels:  vimrc, zshrc
dotfiles
Personal set of vim, zsh, git configs and scripts.
Stars: ✭ 23 (+27.78%)
Mutual labels:  vimrc, zshrc
dotfiles
vim ⌨️ tmux 🖥 git ⑃ zsh 💤
Stars: ✭ 12 (-33.33%)
Mutual labels:  vimrc, zshrc
rc.d
🛠 My rc files and other configs. Includes: Bash, Zsh, Vim, Tmux, Git, Terminal (macOS), VS Code
Stars: ✭ 32 (+77.78%)
Mutual labels:  vimrc, zshrc
Mydotfiles
All my dot configuration files.
Stars: ✭ 359 (+1894.44%)
Mutual labels:  vimrc, zshrc
dotfiles
🍀 Vim/Neovim + Tmux + Zsh + Alacritty = Build your own fantastic development environment
Stars: ✭ 65 (+261.11%)
Mutual labels:  vimrc, zshrc
dotfiles
dotfiles
Stars: ✭ 13 (-27.78%)
Mutual labels:  vimrc, zshrc
Dotfiles
Hack away :)
Stars: ✭ 78 (+333.33%)
Mutual labels:  vimrc, zshrc

Terminal Theme Configuration

A dark theme for terminal related panels, especially on Mac, such as vim, shell and tmux.

Cross-platform dark theme authored by Yida Wang

Environments: Linux/Unix platform

teasor

Installation

Configuration download

git clone https://github.com/wangyida/terminal-themes.git
cd terminal-themes

For machines which support true color, Base16 for Shells could be installed in advance

git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell

ZSH setups

cp ./zshrc ~/.zshrc

Once zsh is installed, oh-my-zsh could be installed via

sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

Then zsh syntax highlighting tool could be downloaded by

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

Finally set it up by source

source ~/.zshrc

VIM setups

Set up [Vundle] for package management:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
cp ./vimrc ~/.vimrc
source ~/.vimrc

To install Plugins, launch vim and run :PluginInstall

The IR_BLACK theme could be adopted by

base16_irblack

Font

A typeface designed for source code

Hack is designed to be a workhorse typeface for code. It has deep roots in the libre, open source typeface community and expands upon the contributions of the Bitstream Vera & DejaVu projects. The project is in active development. We welcome your input and contributions.

hack_font

Editors

VIM

Some themes in vim might not be available when the terminal supports true color, but you have not define this in .vimrc, In April Vim merged patch 7.4.1799, which appears to simplify settings for using true colors in the terminal. After upgrading to this patch, users simply had to include set termguicolors in their vimrc to get true colors in the terminal– the one caveat being that it has to be a terminal like iTerm2 that also supports “true colors”.

You should define this for Iterm:

" gui colors if running iTerm
if $TERM_PROGRAM =~ "iTerm"
  set termguicolors
endif

So vim will be something like this: vim

It also works well with editing with YouCompleteMe, here is a python version for it. python_lint

Tmux

tmux

iTerm

You should have a test for determing whether the specific terminal like iTerm supports true color or not by executing:

perl test.pl

and the results will be something like this: iterm

Here we can use the embeded function

imgcat

in iTerm for perviewing images in terminal. imgcat

ipython

This theme also works for iPython kernels ipython

Atom

atom

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