Skip to content

Commit

Permalink
Update lua lsp server
Browse files Browse the repository at this point in the history
  • Loading branch information
Nakaoni committed Mar 12, 2023
1 parent 304fc95 commit 95927c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nvim/.config/nvim/lua/naka/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ local on_attach = function(_, bufnr)
end

local servers = {
sumneko_lua = {
lua_ls = {
on_attach = on_attach,
settings = {
Lua = {
Expand Down
5 changes: 4 additions & 1 deletion nvim/.config/nvim/lua/naka/nvimtree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ if not status_ok then
end

-- Keymaps
vim.api.nvim_set_keymap("n", "<leader>m", ":NvimTreeToggle<CR>", { noremap = true, silent = true })
vim.api.nvim_set_keymap("n", "<leader>m", ":NvimTreeToggle<CR>", {
noremap = true,
silent = true,
})

nvim_tree.setup({
update_focused_file = {
Expand Down

0 comments on commit 95927c2

Please sign in to comment.