This commit is contained in:
Christian Nieves
2024-01-11 23:09:32 -06:00
parent 27d2ea5b33
commit 44c0523801
7 changed files with 94 additions and 39 deletions

0
vim/.vim/icons.lua Normal file
View File

View File

@ -4,7 +4,6 @@ return {
-- "sindrets/diffview.nvim",
{ "johmsalas/text-case.nvim" },
{ "nvim-lua/plenary.nvim", lazy = false },
{ "nvim-tree/nvim-web-devicons", lazy = false },
{ "squk/java-syntax.vim", ft = "java" },
{ "squk/gdrama-syntax.vim", dir = vim.fn.expand("$HOME/dev/gdrama-syntax.vim") },
{
@ -84,12 +83,6 @@ return {
require("auto-session").setup({ log_level = "error" })
end,
},
{
"ipod825/libp.nvim",
config = function()
require("libp").setup()
end,
},
{
"iamcco/markdown-preview.nvim",
build = "cd app && npm install",

View File

@ -68,6 +68,7 @@ return {
cmp.setup.cmdline(":", {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
{ name = "nvim_lsp_signature_help", priority = 9 },
{ name = "async_path" },
{ name = "cmdline", option = { ignore_cmds = { "edit", "write", "tabedit" } } },
}),

View File

@ -24,7 +24,6 @@ return {
"omnisharp_mono",
"tsserver",
"gopls",
"markdown_lint",
"docker_compose_language_service",
"dockerls",
"graphql",

View File

@ -1,16 +1,49 @@
return {
"rcarriga/nvim-notify",
event = "VimEnter",
lazy = true,
config = function()
-- local colors = require("catppuccin.palettes").get_palette()
require("notify").setup({
-- background_colour = colors.base,
fps = 20, -- default 30
-- stages = "slide", -- default fade_in_slide_out
timeout = 5000, -- default 5000
render = "wrapped-compact",
})
vim.notify = require("notify")
end,
{
"rcarriga/nvim-notify",
event = "VimEnter",
cond = false,
lazy = true,
config = function()
-- local colors = require("catppuccin.palettes").get_palette()
require("notify").setup({
-- background_colour = colors.base,
fps = 20, -- default 30
-- stages = "slide", -- default fade_in_slide_out
timeout = 5000, -- default 5000
render = "wrapped-compact",
})
vim.notify = require("notify")
end,
},
{
"j-hui/fidget.nvim",
event = "VimEnter",
cond = true,
opts = {
progress = {
display = {
done_ttl = 5,
done_icon = "󰞑 ",
},
},
notification = {
override_vim_notify = true,
},
},
},
-- {
-- "echasnovski/mini.notify",
-- version = false,
-- dependencies = {
-- "rcarriga/nvim-notify",
-- "j-hui/fidget.nvim",
-- },
-- config = function()
-- vim.notify = function(msg, level, opts)
-- require("fidget").notify(msg, level, opts)
-- require("mini.notify").make_notify()(msg, level, opts)
-- end
-- end,
-- },
}

View File

@ -0,0 +1,28 @@
return {
"nvim-tree/nvim-web-devicons",
lazy = false,
config = function()
require("nvim-web-devicons").set_icon({
rs = {
icon = "",
color = "#dea584",
cterm_color = "65",
name = "Rust",
},
})
end,
-- {
-- "ipod825/libp.nvim",
-- config = function()
-- require("libp").setup({
-- integration = {
-- web_devicon = {
-- icons = {
-- ["rs"] = { icon = "", name = "Rust", hl = { fg = "#dea584", underline = true } },
-- },
-- },
-- },
-- })
-- end,
-- },
}