All Projects → drewtempelmeyer → Palenight.vim

drewtempelmeyer / Palenight.vim

Licence: mit
Soothing color scheme for your favorite [best] text editor

Projects that are alternatives of or similar to Palenight.vim

Briofita vim
colorful Vim colorscheme for both GUI and 256-color terminals
Stars: ✭ 9 (-98.17%)
Mutual labels:  vim-plugin, colorscheme
Vim Janah
Vim colorscheme.
Stars: ✭ 172 (-65.04%)
Mutual labels:  vim-plugin, colorscheme
Apprentice
A dark, low-contrast, Vim colorscheme.
Stars: ✭ 688 (+39.84%)
Mutual labels:  vim-plugin, colorscheme
Srcery Vim
Dark colorscheme for gvim and vim
Stars: ✭ 518 (+5.28%)
Mutual labels:  vim-plugin, colorscheme
sourcerer.vim
vim colorscheme
Stars: ✭ 42 (-91.46%)
Mutual labels:  magic, colorscheme
Kuroi.vim
A dark Vim colorscheme
Stars: ✭ 174 (-64.63%)
Mutual labels:  vim-plugin, colorscheme
Shirotelin
shirotelin is Ultimate standard light colorscheme for Vim and Neovim!
Stars: ✭ 69 (-85.98%)
Mutual labels:  vim-plugin, colorscheme
Vim Monokai Tasty
VIM Colour scheme
Stars: ✭ 279 (-43.29%)
Mutual labels:  vim-plugin, colorscheme
vim-mysticaltutor
Low-contrast flat colorscheme for Vim and terminals
Stars: ✭ 22 (-95.53%)
Mutual labels:  colorscheme, vim-plugin
Vim Color Spring Night
Low-contrast calm color scheme for Vim
Stars: ✭ 227 (-53.86%)
Mutual labels:  vim-plugin, colorscheme
cosme.vim
Cosmetic color scheme for Vim
Stars: ✭ 63 (-87.2%)
Mutual labels:  colorscheme, vim-plugin
Rigel
🌌 Colorscheme for vim, terminal, vscode and slack - based on the star Rigel ✨.
Stars: ✭ 324 (-34.15%)
Mutual labels:  vim-plugin, colorscheme
Vim Godebug
Go debugging for Vim
Stars: ✭ 437 (-11.18%)
Mutual labels:  vim-plugin
Nord
An arctic, north-bluish color palette.
Stars: ✭ 4,816 (+878.86%)
Mutual labels:  colorscheme
Verticaldissolve
Procedural vertical dissolve shader. Highly customizable. Tweak edge color, noisiness & waviness, rim light, emission scrolling and more.
Stars: ✭ 434 (-11.79%)
Mutual labels:  material
Passwordedittext
A custom EditText with a switchable icon which shows or hides the password
Stars: ✭ 430 (-12.6%)
Mutual labels:  material
Android Tips Tricks
☑️ [Cheatsheet] Tips and tricks for Android Development
Stars: ✭ 4,496 (+813.82%)
Mutual labels:  material
Gatsby Material Starter
A high performance blog starter with Material design in mind for GatsbyJS.
Stars: ✭ 456 (-7.32%)
Mutual labels:  material
Mtslack
Customize your Slack experience with tweaks and themes. Includes the famous Material Themes as well as other popular themes such as Monokai Pro, Dracula, Atom One, GitHub, Solarized, Night Owl...
Stars: ✭ 427 (-13.21%)
Mutual labels:  material
Vim Markdown Toc
A vim 7.4+ plugin to generate table of contents for Markdown files.
Stars: ✭ 427 (-13.21%)
Mutual labels:  vim-plugin

palenight.vim

A dark color scheme for Vim/Neovim based off the Material Pale Night color scheme. Much of the work is based on the lovely onedark.vim color scheme.

Installation

Using vim-plug (modify this to work with your Vim package manager of choice):

Plug 'drewtempelmeyer/palenight.vim'

Usage

In your wonderfully organized Vim (~/.vimrc) or Neovim (.config/nvim/init.vim) configuration, place the following two lines:

set background=dark
colorscheme palenight

To configure lightline, add the following line:

let g:lightline = { 'colorscheme': 'palenight' }

To configure airline, add the following line:

let g:airline_theme = "palenight"

True Colors

To provide the best user experience possible, I recommend enabling true colors. To experience the blissfulness of your editor's true colors, place this in your .vimrc or ~/.config/nvim/init.vim file:

if (has("nvim"))
  "For Neovim 0.1.3 and 0.1.4 < https://github.com/neovim/neovim/pull/2198 >
  let $NVIM_TUI_ENABLE_TRUE_COLOR=1
endif

"For Neovim > 0.1.5 and Vim > patch 7.4.1799 < https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162 >
"Based on Vim patch 7.4.1770 (`guicolors` option) < https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd >
" < https://github.com/neovim/neovim/wiki/Following-HEAD#20160511 >
if (has("termguicolors"))
  set termguicolors
endif

Italics

Italics are a fantastic way to improve the appearance of your code. Italics will do what they can, but, as they say, "you can't polish a 💩." (Although MythBusters busted this). Digressing here, so place this into your config:

" Italics for my favorite color scheme
let g:palenight_terminal_italics=1

Overriding Colors

Overriding palenight's colors are supported through setting the g:palenight_color_overrides variable. See palenight.vim for a list of colors that may be overriden. You must provide gui, cterm, and cterm16 values for each.

Example: Overriding the background color to pure black

let g:palenight_color_overrides = {
\    'black': { 'gui': '#000000', "cterm": "0", "cterm16": "0" },
\}

Contributors

The lovely people that have contributed to palenight.vim

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