A cool tone vim theme
- Use any plugin manager you want. For example with vim-plug just add
Plug 'slugbyte/wet-vim'
to your config. - Add the following lines to your vim config.
set background=dark
colorscheme wet
" if your terminal has 24bit color support you should also add the follwing line
set termguicolors
- Extra filetype highlighting for html, json, jsx, and markdown
- Plugin support
lualine.nvim setup
Add the following code to a nvim lua config
local wet_lualine = require('wet').lualine
-- you can modify wet_lualine here if you want
require('lualine').setup {
options = { theme = wet_lualine },
}