1
Fork 0

Lots of latex stuff and idk what else (timezone change!)

This commit is contained in:
Matei Adriel 2022-09-09 00:16:11 +02:00
commit f17b922131
31 changed files with 398 additions and 67 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -2,12 +2,12 @@ local lspconfig = require("my.plugins.lspconfig")
local M = {}
function M.setup()
require('lean').setup {
abbreviations = {builtin = true, cmp = true},
lsp = {on_attach = lspconfig.on_attach},
lsp3 = {on_attach = lspconfig.on_attach},
mappings = true
}
require('lean').setup {
abbreviations = { builtin = true, cmp = true },
lsp = { on_attach = lspconfig.on_attach },
lsp3 = { on_attach = lspconfig.on_attach },
mappings = true
}
end
return M