@@ -298,7 +298,7 @@ require('lazy').setup({
298298 -- Then, because we use the `opts` key (recommended), the configuration runs
299299 -- after the plugin has been loaded as `require(MODULE).setup(opts)`.
300300
301- { -- Useful plugin to show you pending keybinds.
301+ { -- Useful plugin to show you pending keybinds.
302302 ' folke/which-key.nvim' ,
303303 event = ' VimEnter' , -- Sets the loading event to 'VimEnter'
304304 opts = {
@@ -379,7 +379,7 @@ require('lazy').setup({
379379 { ' nvim-telescope/telescope-ui-select.nvim' },
380380
381381 -- Useful for getting pretty icons, but requires a Nerd Font.
382- { ' nvim-tree/nvim-web-devicons' , enabled = vim .g .have_nerd_font },
382+ { ' nvim-tree/nvim-web-devicons' , enabled = vim .g .have_nerd_font },
383383 },
384384 config = function ()
385385 -- Telescope is a fuzzy finder that comes with a lot of different things that
@@ -487,7 +487,7 @@ require('lazy').setup({
487487 ' WhoIsSethDaniel/mason-tool-installer.nvim' ,
488488
489489 -- Useful status updates for LSP.
490- { ' j-hui/fidget.nvim' , opts = {} },
490+ { ' j-hui/fidget.nvim' , opts = {} },
491491
492492 -- Allows extra capabilities provided by blink.cmp
493493 ' saghen/blink.cmp' ,
@@ -671,6 +671,8 @@ require('lazy').setup({
671671 -- - settings (table): Override the default settings passed when initializing the server.
672672 -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
673673 local servers = {
674+ ansiblels = {},
675+ yamlls = {},
674676 -- clangd = {},
675677 -- gopls = {},
676678 -- pyright = {},
@@ -944,7 +946,7 @@ require('lazy').setup({
944946 main = ' nvim-treesitter.configs' , -- Sets main module to use for opts
945947 -- [[ Configure Treesitter ]] See `:help nvim-treesitter`
946948 opts = {
947- ensure_installed = { ' jsonc' , ' bash' , ' c' , ' diff' , ' html' , ' lua' , ' luadoc' , ' markdown' , ' markdown_inline' , ' query' , ' vim' , ' vimdoc' },
949+ ensure_installed = { ' jsonc' , ' bash' , ' c' , ' diff' , ' html' , ' lua' , ' luadoc' , ' markdown' , ' markdown_inline' , ' query' , ' vim' , ' vimdoc' , ' yaml ' },
948950 -- Autoinstall languages that are not installed
949951 auto_install = true ,
950952 highlight = {
0 commit comments