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

@ -25,8 +25,10 @@ function M.on_attach(client, bufnr)
map(bufnr, 'n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>')
-- Hover
map(bufnr, 'n', 'J',
"<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>")
map(bufnr, 'n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>')
map(bufnr, 'n', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>')
map(bufnr, 'n', 'L', '<cmd>lua vim.lsp.buf.signature_help()<CR>')
-- Workspace stuff
map(bufnr, 'n', '<space>wa',
@ -88,6 +90,7 @@ local servers = {
}
},
rnix = {}
-- agda = {}, Haven't gotten this one to work yet
}
function M.setup()