Reorganize repo into config/, scripts/, and docs/ directories

This commit is contained in:
duma799
2026-02-13 13:15:14 +04:00
parent 063b0b1bd0
commit c7c73546bc
33 changed files with 8 additions and 8 deletions
+38
View File
@@ -0,0 +1,38 @@
return {
"folke/noice.nvim",
event = "VeryLazy",
opts = {
-- add any options here
},
dependencies = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
},
config = function()
pcall(function() vim.cmd("source ~/.cache/wal/colors-wal.vim") end)
local color9 = vim.g.color9 or "#808080"
local color5 = vim.g.color5 or "#ffffff"
require("noice").setup({
lsp = {
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
},
presets = {
bottom_search = false,
command_palette = true,
long_message_to_split = true,
inc_rename = false,
lsp_doc_border = false,
},
})
vim.cmd('highlight NoiceCmdlineIcon guifg=' .. color9)
vim.cmd('highlight NoiceCmdlinePopupBorder guifg=' .. color5)
vim.cmd('highlight NotifyINFOBorder guifg=' .. color5)
vim.cmd('highlight NotifyINFOIcon guifg=' .. color9)
vim.cmd('highlight NotifyINFOTitle guifg=' .. color5)
end,
}