mirror of
https://github.com/stevenproctor/dotfiles.git
synced 2026-01-28 11:29:56 -06:00
11 lines
385 B
Fennel
11 lines
385 B
Fennel
(module dotfiles.plugin.mason
|
|
{autoload {a aniseed.core
|
|
nvim aniseed.nvim mason mason mason-lspconf mason-lspconfig}})
|
|
|
|
(defn setup []
|
|
(when mason
|
|
(mason.setup {:ui {:icons {:package_installed "✓"}}})
|
|
(when mason-lspconf
|
|
(mason-lspconf.setup {:ensure_installed [:lua_ls]})
|
|
(mason-lspconf.setup_handlers {1 default-server-handler}))))
|