neovim

Personal neovim configuration files
git clone git://gtms.dev/neovim
Log | Files | Refs

compiler.lua (169B)


      1 local M = {}
      2 
      3 function M.set(option, arg)
      4   arg = vim.fn.escape(arg, ' ')
      5   vim.api.nvim_cmd({ cmd = 'CompilerSet', args = { option .. '=' .. arg } }, {})
      6 end
      7 
      8 return M