feat: greek letter keyboard layout + custom brackets in nvim
This commit is contained in:
parent
9571595b6f
commit
0c1f2b4297
39 changed files with 1228 additions and 87 deletions
dotfiles/neovim/lua/my/plugins
13
dotfiles/neovim/lua/my/plugins/lean.lua
Normal file
13
dotfiles/neovim/lua/my/plugins/lean.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue