1
Fork 0

feat: greek letter keyboard layout + custom brackets in nvim

This commit is contained in:
Matei Adriel 2022-04-04 02:10:26 +03:00
commit 0c1f2b4297
39 changed files with 1228 additions and 87 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -0,0 +1,13 @@
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
}
end
return M