All Projects → wuelnerdotexe → vim-enfocado

wuelnerdotexe / vim-enfocado

Licence: MIT license
How themes should be.

Programming Languages

Vim Script
2826 projects
lua
6591 projects

Projects that are alternatives of or similar to vim-enfocado

Nord Terminator
An arctic, north-bluish clean and elegant Terminator color theme.
Stars: ✭ 78 (-72.82%)
Mutual labels:  color-theme
Dainty Vs
Dainty for Visual Studio – A color theme generator using Lab color space
Stars: ✭ 115 (-59.93%)
Mutual labels:  color-theme
Aura Theme
💅 A beautiful dark theme for your favorite apps.
Stars: ✭ 159 (-44.6%)
Mutual labels:  color-theme
Nord Atom Ui
An arctic, north-bluish clean and elegant minimal Atom UI theme.
Stars: ✭ 94 (-67.25%)
Mutual labels:  color-theme
Halcyon Vscode
A dark blue theme for VS Code based on the Ayu Mirage theme
Stars: ✭ 108 (-62.37%)
Mutual labels:  color-theme
Hydrangea Vim
Hydrangea theme for Vim.
Stars: ✭ 121 (-57.84%)
Mutual labels:  color-theme
Vim Corvine
The Raven Dark colourscheme for Vim, rebuilt and modified with Colortemplate
Stars: ✭ 76 (-73.52%)
Mutual labels:  color-theme
Nord Alacritty
An arctic, north-bluish clean and elegant Alacritty color scheme.
Stars: ✭ 238 (-17.07%)
Mutual labels:  color-theme
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 (-62.37%)
Mutual labels:  color-theme
Intellij Platform Solarized
Solarized UI and editor themes for IntelliJ IDEA, CLion, Rider, PyCharm, RubyMine, PhpStorm, WebStorm, Android Studio, DataGrip and GoLand
Stars: ✭ 148 (-48.43%)
Mutual labels:  color-theme
Flatwhite Syntax
A light syntax theme for Atom
Stars: ✭ 98 (-65.85%)
Mutual labels:  color-theme
Iceberg.vim
🇦🇶 Bluish color scheme for Vim and Neovim
Stars: ✭ 1,636 (+470.03%)
Mutual labels:  color-theme
Nord Vim
An arctic, north-bluish clean and elegant Vim theme.
Stars: ✭ 1,987 (+592.33%)
Mutual labels:  color-theme
Gvcci
color extraction to turn images into 16 color palettes
Stars: ✭ 86 (-70.03%)
Mutual labels:  color-theme
Nord Terminal App
An arctic, north-bluish clean and elegant Terminal.app color theme.
Stars: ✭ 198 (-31.01%)
Mutual labels:  color-theme
Doric
Protocol oriented, type safe, scalable design system foundation swift framework for iOS.
Stars: ✭ 75 (-73.87%)
Mutual labels:  color-theme
Colordrop
Interactive Drag & Drop Coloring with Material Design Color palette
Stars: ✭ 120 (-58.19%)
Mutual labels:  color-theme
revenant
minimalistic visual studio code color theme
Stars: ✭ 22 (-92.33%)
Mutual labels:  color-theme
Nord Xresources
An arctic, north-bluish clean and elegant Xresources color theme.
Stars: ✭ 210 (-26.83%)
Mutual labels:  color-theme
Nord Xfce Terminal
An arctic, north-bluish clean and elegant Xfce Terminal color theme.
Stars: ✭ 136 (-52.61%)
Mutual labels:  color-theme

Enfocado for Vim

Banner

License Badge README Style Badge

Enfocado is more than a theme, it is a concept of "how themes should be", focusing on what is really important to developers: the code and nothing else.

What you won't have if you don't install Enfocado:

  • CIELAB Colors: use of the well-founded Selenized color scheme created with the magic of the CIELAB color space. Learn about its features and design in its official repository.
  • Human Writing: human writing is simulated by using italic typeface for syntax groups (comments, methods, structs, and more ...) that are generally named and written in human language.
  • Minimal Syntax: only three colors are used to highlight syntax, following the color guidelines for web design, which state that only three main colors should be used in interfaces, no more.
  • Signal Alerts: the yellow, orange and red colors are reserved to be used only with important alerts, following the standards for the meanings of the signal colors in the industrial area.
  • Styles: choose the style that best suits your personality:
Nature: go for the nature style if you are a minimalist developer who is always connected to nature.

Neon: go for the neon style if you are an outgoing developer that is always surrounded by RGBs.

Table of Contents

Installation

Install via your preferred package manager. Example using vim-plug:

Plug 'wuelnerdotexe/vim-enfocado'

Usage

Statuslines

To use Lightline theme:

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

To use Lualine theme:

require('lualine').setup { options = { theme = 'enfocado' } }

To use Airline theme:

let g:airline_theme = 'enfocado'

Colorscheme

First, if you have true color support, enable it:

set termguicolors

Otherwise, enable 256 terminal color support:

set t_Co=256

Choose between light or dark theme:

set background={light or dark}

Then choose your favorite Enfocado style, for example:

let g:enfocado_style = 'neon' " Available: `nature` or `neon`.

If you want to reduce the loading time of Enfocado, you can specify the plugins you want to apply the theme to on demand:

" NOTE: To see a list of all available plugins, run
" `:h enfocado-colorscheme` at the vim commandline.
let g:enfocado_plugins = [
  \   'aerial',
  \   'bufferline',
  \   'cmp',
  \   'dap-ui',
  \   'fern',
  \   'gitsigns',
  \   'glyph-palette',
  \   'illuminate',
  \   'indent-blankline',
  \   'lazy',
  \   'lspconfig',
  \   'matchup',
  \   'noice',
  \   'null-ls',
  \   'smoothcursor',
  \   'substitute',
  \   'surround',
  \   'telescope',
  \   'visual-multi',
  \   'yanky'
  \ ]

And finally turn on the Enfocado theme and enjoy!

colorscheme enfocado

Customization

Like all colorschemes, Enfocado is easy to customize with autocmd. Make use of the ColorScheme event as in the following examples.

It would be a good idea to put all of your personal changes in an augroup, which you can do with the following code:

augroup enfocado_customization
  autocmd!
    " autocmds...
augroup END

To make the background transparent, you can use the following:

augroup enfocado_customization
  autocmd!
    autocmd ColorScheme enfocado highlight Normal ctermbg=NONE guibg=NONE
augroup END

NOTE: The usage codes must be written in your .vimrc or init.vim.

Syntax

Master your theme, understand and recognize syntax, improve your muscle memory.

SELENIZED COLOR HEX COLOR HEX COLOR (light) TEXT TYPE NATURE SYNTAX TOKENS NEON SYNTAX TOKENS
Dimmed #777777 #878787 Italic Comments Comments
Foreground 0 #b9b9b9 #474747 NONE Constants, punctuation, text Constants, punctuation, text
Foreground 1 #dedede #282828 Bold Titles Titles
Red #ed4a46 #d6000c NONE Not used in the syntax Not used in the syntax
Yellow #dbb32d #c49700 NONE Constant identifiers Constant identifiers
Green #70b433 #1d9700 NONE Identifiers Built-in identifiers
Blue #368aeb #0064e4 NONE Keywords Built-in keywords
Magenta #eb6eb7 #dd0f9d NONE Built-in identifiers Identifiers
Cyan #3fc5b7 #00ad9c NONE Strings Strings
Orange #e67f43 #d04a00 NONE Exceptions (trycatch) Exceptions (trycatch)
Violet #a580e2 #7f51d6 NONE Built-in keywords Keywords
Bright red #ff5e56 #bf0000 Bold Errors Errors
Bright yellow #efc541 #af8500 NONE Not used in the syntax Not used in the syntax
Bright green #83c746 #008400 Italic Methods Built-in methods
Bright blue #4f9cfe #0054cf Bold Types Built-in types
Bright magenta #ff81ca #c7008b Italic Built-in methods Methods
Bright cyan #56d8c9 #009a8a Underline Links Links
Bright orange #fa9153 #ba3700 NONE Not used in the syntax Not used in the syntax
Bright violet #b891f5 #6b40c3 Bold Built-in types Types

DISCLAIMER: Enfocado doesn't customize individual tokens for each language, it just defines the default base, if your syntax doesn't look as described here, it's not our responsibility, it's the responsibility of those who assign wrong tokens to some language's syntax, and we don't correct those problems constantly.

Recommendations

Tree-sitter

If you are on Neovim, it is strongly recommended that you use nvim-treesitter to ensure that your syntax highlighting is as close as possible to what is described above.

Fonts

In order for the human text simulation to work as it should, I recommend that you use either of these three beautiful fonts, which align with the "Mankind and Machine" concept.

Configs

This vim configs comes with Enfocado for Vim already installed by default!

Extras

Maintainer

Hi 👋, I'm Wuelner, a software developer from Guatemala, passionate about creating minimalist solutions using solid fundamentals focused on "how things should be".

Contributing

All your ideas and suggestions are welcome! 🙌

Let me see your captures and let me know what you think with the hashtag #HowThemesShouldBe. 👀

And of course, if you want to motivate me to constantly improve this theme, your donations are welcome at PayPal. 👉👈

Plugins

The following plugins are supported:

Credits

License

MIT © Wuelner Martínez.

With 💖 from LATAM to the world!

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