mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 20:41:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			774 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			774 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| return {
 | |
|   -- lang server installations
 | |
|   {
 | |
|     'williamboman/mason.nvim',
 | |
|     dependencies = {
 | |
|       {
 | |
|         'nvimtools/none-ls.nvim',
 | |
|         config = function()
 | |
|           require("null-ls").setup({
 | |
|             sources = {
 | |
|               -- python
 | |
|               require("null-ls").builtins.formatting.isort,
 | |
|               require("null-ls").builtins.formatting.black,
 | |
|               -- markdown
 | |
|               require("null-ls").builtins.formatting.mdformat,
 | |
|             }
 | |
|           })
 | |
|         end
 | |
|       },
 | |
|       {
 | |
|         'jay-babu/mason-null-ls.nvim',
 | |
|         opts = {
 | |
|           automatic_installation = true,
 | |
|           ensure_installed = {
 | |
|             "isort", "black", "mdformat"
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     },
 | |
|     opts = { ui = { icons = Install_signs } }
 | |
|   }
 | |
| }
 |