mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
11 lines
156 B
Lua
11 lines
156 B
Lua
local M = {}
|
|
|
|
local g = vim.g
|
|
|
|
M.setup = function()
|
|
vim.g.localleader = ","
|
|
|
|
g["conjure#filetype#fennel"] = "conjure.client.fennel.stdio"
|
|
end
|
|
|
|
return M
|