Compare commits

..

No commits in common. "5a533becb0f5aac3f579581d3812f0a2010f182c" and "5f155a5880f3c0fd491a828a949df99e16738f56" have entirely different histories.

4 changed files with 7 additions and 26 deletions

View File

@ -17,6 +17,7 @@ end
if vim.lsp.inlay_hint then
vim.lsp.inlay_hint.enable(true, { 0 })
end
require("config.lazy")
require("config.plugins.autotag")
require("config.plugins.autocomplete")

View File

@ -1,29 +1,6 @@
require("telescope").load_extension("ui-select")
require("telescope").setup({
defaults = {
borderchars = { " ", " ", " ", " ", " ", " ", " ", " " }
},
extensions = {
["ui-select"] = {
require("telescope.themes").get_dropdown {
-- even more opts
}
-- pseudo code / specification for writing custom displays, like the one
-- for "codeactions"
-- specific_opts = {
-- [kind] = {
-- make_indexed = function(items) -> indexed_items, width,
-- make_displayer = function(widths) -> displayer
-- make_display = function(displayer) -> function(e)
-- make_ordinal = function(e) -> string
-- },
-- -- for example to disable the custom builtin "codeactions" display
-- do the following
-- codeactions = false,
-- }
}
}
})

View File

@ -3,9 +3,6 @@ return {
{
'simrat39/inlay-hints.nvim',
},
{
'nvim-telescope/telescope-ui-select.nvim'
},
{
"akinsho/bufferline.nvim",
},
@ -50,6 +47,9 @@ return {
},
{
"nvim-telescope/telescope.nvim",
dependencies = {
'nvim-telescope/telescope-ui-select.nvim',
}
},
{
"williamboman/mason-lspconfig.nvim",

View File

@ -21,6 +21,9 @@ return {
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
---@module "ibl"
---@type ibl.config
opts = {},
},
{
"savq/melange-nvim"