Skip to content

Commit

Permalink
Merge pull request #88 from TechDufus/neovim/lsp_plugins
Browse files Browse the repository at this point in the history
adding additional default lsps and formatters.
  • Loading branch information
TechDufus authored Jan 17, 2024
2 parents 37d2377 + 9049956 commit 20bb6e1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
vault-password.txt
/callback_plugins/__pycache__

roles/neovim/files/lazy-lock.json
13 changes: 11 additions & 2 deletions roles/neovim/files/lua/plugins/lsp-zero.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,17 @@ return {
'solargraph',
'terraformls',
'lua_ls',
-- 'sumneko_lua',
'yamlls'
'yamlls',
'ansible-lint',
'beautysh',
'cssls',
'gh',
'gopls',
'jsonls',
'lua_ls',
'prettier',
'pylsp',
'tsserver',
})

lsp.on_attach(function(client, bufnr)
Expand Down
2 changes: 1 addition & 1 deletion roles/neovim/files/lua/plugins/nvim-surround.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
return {
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
version = "main", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
Expand Down

0 comments on commit 20bb6e1

Please sign in to comment.