neovim

mrgrouse's beloved, handmade neovim configuration
Log | Files | Refs | README

highlights.lua (262B)


      1 local M = {}
      2 local config = require('pywal.config')
      3 
      4 function M.highlight_all(colors)
      5   local base_highlights = config.highlights_base(colors)
      6   for group, properties in pairs(base_highlights) do
      7     vim.api.nvim_set_hl(0, group, properties)
      8   end
      9 end
     10 
     11 return M