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:
parent
16beeaf6fd
commit
da44d866c5
4 changed files with 34 additions and 19 deletions
|
|
@ -128,7 +128,7 @@ return {
|
|||
},
|
||||
}
|
||||
|
||||
dashboard.section.header.val = ascii_arts['kraken']-- require("ascii").art.misc.krakens['sleekraken']
|
||||
dashboard.section.header.val = require("ascii").art.misc.krakens['sleekraken']
|
||||
|
||||
-- Set menu
|
||||
dashboard.section.buttons.val = {
|
||||
|
|
@ -149,7 +149,7 @@ return {
|
|||
dashboard.section.footer.opts.hl = "Conceal"
|
||||
dashboard.config.opts.noautocmd = true
|
||||
|
||||
vim.cmd[[autocmd User AlphaReady echo 'ready']]
|
||||
vim.cmd [[autocmd User AlphaReady echo 'ready']]
|
||||
|
||||
alpha.setup(dashboard.opts)
|
||||
end
|
||||
|
|
|
|||
14
lua/custom/plugins/telescope-ui-select.lua
Normal file
14
lua/custom/plugins/telescope-ui-select.lua
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue