feat(Mason): Ensure Installed some LSP's

*LSP's: Clangd, html, tsserver, rust_analyzer
*Add telescope-ui-select pluginwhich gives a nice ui in telescope code actions
*Change alpha ascii-art
This commit is contained in:
rajvatsal 2023-12-30 20:23:54 +05:30
parent 16beeaf6fd
commit da44d866c5
4 changed files with 34 additions and 19 deletions

View file

@ -0,0 +1,14 @@
return {
'nvim-telescope/telescope-ui-select.nvim',
config = function()
require('telescope').setup({
extensions = {
['ui-select'] = {
require('telescope.themes').get_dropdown {
}
}
}
})
require('telescope').load_extension('ui-select')
end
}