All Projects → Rigellute → Shades Of Purple.vim

Rigellute / Shades Of Purple.vim

Dark theme for vim

Projects that are alternatives of or similar to Shades Of Purple.vim

Nvcode
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 6,714 (+4986.36%)
Mutual labels:  neovim, nvim, vscode
Gnvim
GUI for neovim, without any web bloat
Stars: ✭ 1,271 (+862.88%)
Mutual labels:  neovim, nvim
Nvimpager
Use nvim as a pager to view manpages, diffs, etc with nvim's syntax highlighting
Stars: ✭ 131 (-0.76%)
Mutual labels:  neovim, nvim
Neovim
Vim-fork focused on extensibility and usability
Stars: ✭ 49,389 (+37315.91%)
Mutual labels:  neovim, nvim
Nvim Hlslens
Hlsearch Lens for Neovim
Stars: ✭ 55 (-58.33%)
Mutual labels:  neovim, nvim
Dotfiles
🏠
Stars: ✭ 60 (-54.55%)
Mutual labels:  neovim, nvim
Ncm R
R autocompletion for Neovim and vim 8 📝 📊 ⚡️
Stars: ✭ 102 (-22.73%)
Mutual labels:  neovim, nvim
Defx.nvim
📁 The dark powered file explorer implementation
Stars: ✭ 917 (+594.7%)
Mutual labels:  neovim, nvim
Nvim Autopairs
autopairs for neovim written by lua
Stars: ✭ 112 (-15.15%)
Mutual labels:  neovim, nvim
Nvim Lspconfig
Quickstart configurations for the Nvim LSP client
Stars: ✭ 3,410 (+2483.33%)
Mutual labels:  neovim, nvim
Vscode Neovim
VSCode Neovim Integration
Stars: ✭ 2,474 (+1774.24%)
Mutual labels:  vscode, neovim
Vimrc
📝 Vim Configuration for nerds with vim-plug
Stars: ✭ 33 (-75%)
Mutual labels:  neovim, nvim
Nvim Completion Manager
⚠️ PLEASE USE https://github.com/ncm2/ncm2 INSTEAD
Stars: ✭ 950 (+619.7%)
Mutual labels:  neovim, nvim
Nvim Nonicons
Icon set using nonicons for neovim plugins and settings
Stars: ✭ 77 (-41.67%)
Mutual labels:  neovim, nvim
Vim Dirvish
Directory viewer for Vim ⚡️
Stars: ✭ 929 (+603.79%)
Mutual labels:  neovim, nvim
Dotfiles
💻 Use command line interface manager for macOS configuration.
Stars: ✭ 97 (-26.52%)
Mutual labels:  vscode, neovim
Awesome Vim Colorschemes
Collection of awesome color schemes for Neo/vim, merged for quick use.
Stars: ✭ 1,951 (+1378.03%)
Mutual labels:  neovim, nvim
Thinkvim
Vim configuration in the 21st century
Stars: ✭ 832 (+530.3%)
Mutual labels:  neovim, nvim
Deoplete Phpactor
Phpactor integration for deoplete.nvim
Stars: ✭ 17 (-87.12%)
Mutual labels:  neovim, nvim
Ubuntu On Steroids
Developer setup & configuration guide for Ubuntu.
Stars: ✭ 111 (-15.91%)
Mutual labels:  vscode, neovim

A 24bit dark Vim colorscheme based on ahmadawais/shades-of-purple-vscode

vim

Example using tmux with matching terminal theme

tmux

Install

"""" install
" install with vim-plug
Plug 'Rigellute/shades-of-purple.vim'

" or with NeoBundle
" NeoBundle 'Rigellute/shades-of-purple.vim'
" or with Vundle
" Plugin 'Rigellute/shades-of-purple.vim'

"""" enable 24bit true color
" If you have vim >=8.0 or Neovim >= 0.1.5
if (has("termguicolors"))
 set termguicolors
endif

"""" enable the theme
syntax enable
colorscheme shades_of_purple

Airline

airline-vim

If you would like to use the accompanying airline colorscheme

let g:shades_of_purple_airline = 1
let g:airline_theme='shades_of_purple'

Lightline

lightline

If you would like to use the accompanying lightline colorscheme

let g:shades_of_purple_lightline = 1
let g:lightline = { 'colorscheme': 'shades_of_purple' }

Terminal

alacritty

For a complete experience, make your terminal use the same colorscheme as vim.

I use alacritty

Add this to ~/.config/alacritty/alacritty.yml

# Colors
colors:
  # Default colors
  primary:
    background: "0x1E1E3F"
    foreground: "0xE1EFFF"

  # Colors the cursor will use if `custom_cursor_colors` is true
  cursor:
    text: "0x1E1E3F"
    cursor: "0xFAD000"

  # Normal colors
  normal:
    black: "0x000000"
    red: "0xEC3A37"
    green: "0x75e44c"
    yellow: "0xFAD000"
    blue: "0x6943FF"
    magenta: "0xFF2C70"
    cyan: "0x80FCFF"
    white: "0xFFFFFF"

  # Bright colors
  bright:
    black: "0x5C5C61"
    red: "0xEC3A37F5"
    green: "0x3AD900"
    yellow: "0xFAD000"
    blue: "0x6943FF"
    magenta: "0xFB94FF"
    cyan: "0x80FCFF"
    white: "0x2D2B55"

For other terminal emulators check here

Troubleshooting

True color

Make sure you are using a terminal emulator that supports truecolor. Read more about this here.

Colours don't look right

If you are running vim within tmux, you may run into some truecolor issues.

To fix, add this to you tmux.conf

set -g terminal-overrides ',xterm-256color:Tc'
set -g default-terminal "tmux-256color"
set -as terminal-overrides ',xterm*:sitm=\E[3m'

And in your .bash_profile || .zshrc

export TERM="xterm-256color"

Ensure you tmux kill-server, quit your emulator of choice and startup it all back up again. It should then look 👌.

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