Skip to content

Commit

Permalink
Small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrodgers42 committed Mar 6, 2024
1 parent bd16a39 commit 6b93c77
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ local plugins = {
path = 1
},
},
lualine_x = { "aerial" },
lualine_x = { "aerial", },
lualine_y = { "encoding", 'fileformat', 'filetype' },
lualine_z = { 'progress', 'location' }
}
Expand Down Expand Up @@ -413,7 +413,7 @@ local language_configs = {
}
},
{
language_server = "pylsp",
language_server = "pyright",
parser = "python",
lspconfig_settings = {
pylsp = {
Expand Down Expand Up @@ -491,7 +491,7 @@ end
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
callback = function(event)
MapLspCommands(_, event.buf)
MapLspCommands(nil, event.buf)
end
})

Expand Down Expand Up @@ -531,6 +531,7 @@ local function install_language_servers(configs)
automatic_installation = true
})
require('nvim-treesitter.configs').setup {
auto_install = true,
autotag = {
enable = true,
},
Expand Down

0 comments on commit 6b93c77

Please sign in to comment.