All Projects → patstockwell → Vim Monokai Tasty

patstockwell / Vim Monokai Tasty

VIM Colour scheme

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vim Monokai Tasty

Toast.vim
🍞 Toast! A colorful, medium-contrast color scheme with full Vim and Neovim support and automatic light and dark variants. Easy to read without frying your retinae.
Stars: ✭ 108 (-61.29%)
Mutual labels:  neovim, neovim-plugin, vim-colorscheme, color-scheme, colorscheme, color-theme
Iceberg.vim
🇦🇶 Bluish color scheme for Vim and Neovim
Stars: ✭ 1,636 (+486.38%)
Mutual labels:  vim-colorscheme, color-scheme, colorscheme, color-theme
vim-lighthaus
A Lighthaus theme for (n)vim, vim-airline and lightline
Stars: ✭ 33 (-88.17%)
Mutual labels:  colorscheme, color-scheme, color-theme, vim-colorscheme
Srcery Vim
Dark colorscheme for gvim and vim
Stars: ✭ 518 (+85.66%)
Mutual labels:  vim-plugin, color-scheme, colorscheme, color-theme
Nord Vim
An arctic, north-bluish clean and elegant Vim theme.
Stars: ✭ 1,987 (+612.19%)
Mutual labels:  vim-colorscheme, color-scheme, colorscheme, color-theme
Briofita vim
colorful Vim colorscheme for both GUI and 256-color terminals
Stars: ✭ 9 (-96.77%)
Mutual labels:  vim-plugin, vim-colorscheme, color-scheme, colorscheme
nord-slack
An arctic, north-bluish clean and elegant Slack theme.
Stars: ✭ 129 (-53.76%)
Mutual labels:  colorscheme, color-scheme, color-theme
nord-tilix
An arctic, north-bluish clean and elegant Tilix color scheme.
Stars: ✭ 105 (-62.37%)
Mutual labels:  colorscheme, color-scheme, color-theme
VimConfig
Configuration files for Vi-IMproved.
Stars: ✭ 23 (-91.76%)
Mutual labels:  vimrc, vim-plugin, vim-colorscheme
vim
📝 minimalistic vimrc based on KISS principle @vim
Stars: ✭ 46 (-83.51%)
Mutual labels:  vimrc, neovim, vim-plugin
nord-notepadplusplus
An arctic, north-bluish clean and elegant Notepad++ theme.
Stars: ✭ 112 (-59.86%)
Mutual labels:  colorscheme, color-scheme, color-theme
vim-humanoid-colorscheme
Light and dark theme for vim with bright colors
Stars: ✭ 67 (-75.99%)
Mutual labels:  colorscheme, color-scheme, vim-colorscheme
virt-column.nvim
Display a character as the colorcolumn
Stars: ✭ 64 (-77.06%)
Mutual labels:  neovim, vim-plugin, neovim-plugin
kakoune-colors
Color schemes for kakoune
Stars: ✭ 15 (-94.62%)
Mutual labels:  colorscheme, color-scheme, color-theme
neon
Customizable coloscheme with dark and light options, vivid colors and easy on the eye.
Stars: ✭ 100 (-64.16%)
Mutual labels:  colorscheme, color-scheme, vim-colorscheme
aquarium-vim
🌊 Aquarium, a simple vibrant dark theme for vim 🗒
Stars: ✭ 151 (-45.88%)
Mutual labels:  colorscheme, color-scheme, vim-colorscheme
aurora
24-bit dark theme for (Neo)vim. Optimized for treesitter, LSP.
Stars: ✭ 141 (-49.46%)
Mutual labels:  colorscheme, neovim-plugin, vim-colorscheme
disco.vim
A full set of 2-, 8-, 16-, 88-, 256-, and GUI-color-compatible Vim colors.
Stars: ✭ 53 (-81%)
Mutual labels:  colorscheme, color-scheme, vim-colorscheme
nord-mintty
An arctic, north-bluish clean and elegant Mintty color theme.
Stars: ✭ 40 (-85.66%)
Mutual labels:  colorscheme, color-scheme, color-theme
Nord Gnome Terminal
An arctic, north-bluish clean and elegant GNOME Terminal color theme.
Stars: ✭ 258 (-7.53%)
Mutual labels:  color-scheme, colorscheme, color-theme

vim-monokai-tasty

PRs Welcome Maintenance Last commit Donate with Bitcoin

Monokai forever! 🎉 Inspired by Sublime Text's interpretation of monokai, this colour is both gui- and cterm-supported. It works for all languages, and is particularly good for JavaScript and TypeScript development ❤️

Unlike other monokai implementations, vim-monokai-tasty targets named syntax groups from a variety of modern syntax group plugins (listed below). *74% tastier than competitors 🌮

*according to me

🔌 Installation

I recommend using Plug.

Add the following to your .vimrc and run PlugInstall

Plug 'patstockwell/vim-monokai-tasty'

If you use Vundle:

Plugin 'patstockwell/vim-monokai-tasty'

🐺 Use

Add the following to your .vimrc (after the Plug declaration):

colorscheme vim-monokai-tasty

If you use a terminal that supports italic text, add (before the colorscheme declaration):

let g:vim_monokai_tasty_italic = 1
colorscheme vim-monokai-tasty

To use the included lightline.vim theme:

let g:lightline = {
      \ 'colorscheme': 'monokai_tasty',
      \ }

To use the included vim-airline theme:

let g:airline_theme='monokai_tasty'

📚 Additional plugins with targeted syntax groups

For JavaScript, TypeScript, and React development, monokai-tasty supports definitions from all these plugins. Add some of these for an even better look and feel:

Plug 'HerringtonDarkholme/yats.vim'
Plug 'pangloss/vim-javascript'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'styled-components/vim-styled-components'
Plug 'elzr/vim-json'
Plug 'jparise/vim-graphql'

🔮 Extras

  • If you use iterm2 (you should), there is an included monokai.itermcolors file.
  • If you use GnuCoreutils there is a dircolors file (compliments the iterm colours)

📺 Screen shots

⭐️ Example .vimrc

" put Plug declaration first
call plug#begin('~/.vim/plugged')
Plug 'patstockwell/vim-monokai-tasty'
Plug 'HerringtonDarkholme/yats.vim'
Plug 'pangloss/vim-javascript'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'elzr/vim-json'
Plug 'styled-components/vim-styled-components'
Plug 'itchyny/lightline.vim'
Plug 'vim-airline/vim-airline'
call plug#end()

let g:vim_monokai_tasty_italic = 1                    " allow italics, set this before the colorscheme
colorscheme vim-monokai-tasty                         " set the colorscheme

" Optional themes for airline/lightline
let g:airline_theme='monokai_tasty'                   " airline theme
let g:lightline = { 'colorscheme': 'monokai_tasty' }  " lightline theme

" If you don't like a particular colour choice from `vim-monokai-tasty`, you can
" override it here. For example, to change the colour of the search hightlight:
hi Search guifg=#bada55 guibg=#000000 gui=bold ctermfg=green ctermbg=black cterm=bold

" If you don't know what the name of a particular hightlight is, you can use
" `What`. It will print out the syntax group that the cursor is currently above.
" from https://www.reddit.com/r/vim/comments/6z4aau/how_to_stop_vim_from_autohighlighting_italics_in/
command! What echo synIDattr(synID(line('.'), col('.'), 1), 'name')

🎨 Colour palette

Colour name Colour Code Colour
Yellow #ffff87 #ffff87
Purple #af87ff #af87ff
Light Green #A4E400 #A4E400
Light Blue #62D8F1 #62D8F1
Magenta #FC1A70 #FC1A70
Orange #FF9700 #FF9700

🏗 Support

If you like vim-monokai-tasty or find this plugin useful, you can support me by donating bitcoin to the following address.

Donate with Bitcoin

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