neovim

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

init.lua (231B)


      1 local M = {}
      2 local core = require('pywal.core')
      3 local highlights = require('pywal.highlights')
      4 
      5 function M.setup ()
      6   local colors = core.get_colors()
      7   vim.opt.termguicolors = true
      8   highlights.highlight_all(colors)
      9 end
     10 
     11 return M