Update config

This commit is contained in:
2026-04-22 10:48:00 -07:00
parent 08b6a1dcf7
commit 51c8d50c2f
2 changed files with 35 additions and 37 deletions
+35 -36
View File
@@ -1,51 +1,50 @@
-- Native 0.12 package manager (vim.pack) -- Native 0.12 package manager (vim.pack)
vim.pack.add({ vim.pack.add({
{ src = "https://git.timmypidashev.dev/timmypidashev/darkbox.nvim" }, { src = "https://git.timmypidashev.dev/timmypidashev/darkbox.nvim" },
{ src = "https://github.com/nvim-tree/nvim-web-devicons" }, { src = "https://github.com/nvim-tree/nvim-web-devicons" },
{ src = "https://github.com/nvim-lualine/lualine.nvim" }, { src = "https://github.com/nvim-lualine/lualine.nvim" },
{ src = "https://github.com/lewis6991/gitsigns.nvim" }, { src = "https://github.com/lewis6991/gitsigns.nvim" },
{ src = "https://github.com/nvim-treesitter/nvim-treesitter", version = "main" }, { src = "https://github.com/nvim-treesitter/nvim-treesitter", version = "main" },
{ src = "https://github.com/mason-org/mason.nvim" }, { src = "https://github.com/mason-org/mason.nvim" },
{ src = "https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim" }, { src = "https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim" },
{ src = "https://github.com/wakatime/vim-wakatime" }, { src = "https://github.com/wakatime/vim-wakatime" },
{ src = "https://github.com/nvim-lua/plenary.nvim" }, { src = "https://github.com/nvim-lua/plenary.nvim" },
{ src = "https://github.com/romgrk/barbar.nvim" }, { src = "https://github.com/romgrk/barbar.nvim" },
{ src = "https://github.com/stevearc/oil.nvim" }, { src = "https://github.com/stevearc/oil.nvim" },
-- Completion -- Completion
{ src = "https://github.com/saghen/blink.cmp", version = vim.version.range("1") }, { src = "https://github.com/saghen/blink.cmp", version = vim.version.range("1") },
-- Picker -- Picker
{ src = "https://github.com/ibhagwan/fzf-lua" }, { src = "https://github.com/ibhagwan/fzf-lua" },
-- Formatter / Linter -- Formatter / Linter
{ src = "https://github.com/stevearc/conform.nvim" }, { src = "https://github.com/stevearc/conform.nvim" },
{ src = "https://github.com/mfussenegger/nvim-lint" }, { src = "https://github.com/mfussenegger/nvim-lint" },
-- Quality of life -- Quality of life
{ src = "https://github.com/folke/which-key.nvim" }, { src = "https://github.com/folke/which-key.nvim" },
{ src = "https://github.com/windwp/nvim-autopairs" }, { src = "https://github.com/windwp/nvim-autopairs" },
{ src = "https://github.com/kylechui/nvim-surround" }, { src = "https://github.com/kylechui/nvim-surround" },
{ src = "https://github.com/akinsho/toggleterm.nvim" }, { src = "https://github.com/akinsho/toggleterm.nvim" },
{ src = "https://github.com/mbbill/undotree" }, { src = "https://github.com/mbbill/undotree" },
-- UI -- UI
{ src = "https://github.com/MunifTanjim/nui.nvim" }, { src = "https://github.com/MunifTanjim/nui.nvim" },
{ src = "https://github.com/rcarriga/nvim-notify" }, { src = "https://github.com/rcarriga/nvim-notify" },
{ src = "https://github.com/folke/noice.nvim" }, { src = "https://github.com/folke/noice.nvim" },
{ src = "https://github.com/nvim-mini/mini.indentscope" }, { src = "https://github.com/nvim-mini/mini.indentscope" },
{ src = "https://github.com/nvim-mini/mini.animate" }, { src = "https://github.com/nvim-mini/mini.animate" },
-- Fancy -- Fancy
{ src = "https://github.com/zeybek/camouflage.nvim" }, { src = "https://github.com/zeybek/camouflage.nvim" },
{ src = "https://github.com/Owen-Dechow/videre.nvim" }, { src = "https://github.com/Owen-Dechow/videre.nvim" },
{ src = "https://github.com/rachartier/tiny-glimmer.nvim" }, { src = "https://github.com/rachartier/tiny-glimmer.nvim" },
{ src = "https://github.com/MeanderingProgrammer/render-markdown.nvim" }, { src = "https://github.com/MeanderingProgrammer/render-markdown.nvim" },
}) })
-- Local dev plugins -- Local dev plugins
vim.opt.rtp:prepend(vim.fn.expand("~/Projects/timmypidashev/verse.nvim")) vim.opt.rtp:prepend(vim.fn.expand("~/Projects/timmypidashev/verse.nvim"))
vim.opt.rtp:prepend(vim.fn.expand("~/Projects/homze/calculator/editors/neovim"))
require("timmypidashev.plugins.darkbox") require("timmypidashev.plugins.darkbox")
require("timmypidashev.plugins.lualine") require("timmypidashev.plugins.lualine")
-1
View File
@@ -1 +0,0 @@
require("calc").setup()