mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
feat: revert coupled
This commit is contained in:
parent
5c8c442da4
commit
7f01b578ac
33 changed files with 803 additions and 778 deletions
|
|
@ -14,7 +14,62 @@ vim.opt.rtp:prepend(lazypath)
|
|||
require("keymap")
|
||||
require("options")
|
||||
|
||||
require("lazy").setup("plugins", {
|
||||
require("lazy").setup({
|
||||
-- Misc
|
||||
"Th3Whit3Wolf/one-nvim",
|
||||
{ "catppuccin/nvim", name = "catppuccin" },
|
||||
"ThePrimeagen/vim-be-good",
|
||||
"andweeb/presence.nvim",
|
||||
"Eandrju/cellular-automaton.nvim",
|
||||
|
||||
-- Nice to have
|
||||
"tpope/vim-sleuth",
|
||||
"mg979/vim-visual-multi",
|
||||
"nvim-lualine/lualine.nvim",
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
"simrat39/symbols-outline.nvim",
|
||||
"ellisonleao/glow.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
{ "akinsho/toggleterm.nvim", version = "*" },
|
||||
|
||||
-- Can't live without
|
||||
"numToStr/Comment.nvim",
|
||||
"ur4ltz/surround.nvim",
|
||||
"lewis6991/gitsigns.nvim",
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
"lukoshkin/trailing-whitespace",
|
||||
"windwp/nvim-autopairs",
|
||||
{ "ThePrimeagen/harpoon", dependencies = { "nvim-lua/plenary.nvim" } },
|
||||
"tpope/vim-fugitive",
|
||||
{ "folke/todo-comments.nvim", dependencies = "nvim-lua/plenary.nvim" },
|
||||
{ "hrsh7th/nvim-cmp", dependencies = { "hrsh7th/cmp-nvim-lsp", "L3MON4D3/LuaSnip", "saadparwaiz1/cmp_luasnip" } },
|
||||
"mbbill/undotree",
|
||||
"rafamadriz/friendly-snippets",
|
||||
"mizlan/iswap.nvim",
|
||||
{ "wintermute-cell/gitignore.nvim", dependencies = { "nvim-telescope/telescope.nvim" } },
|
||||
|
||||
-- Power tools
|
||||
{ "nvim-telescope/telescope.nvim", branch = "0.1.x", dependencies = { "nvim-lua/plenary.nvim" } },
|
||||
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make", cond = vim.fn.executable("make") == 1 },
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = function()
|
||||
local ts_update = require("nvim-treesitter.install").update({ with_sync = true })
|
||||
ts_update()
|
||||
end,
|
||||
},
|
||||
"nvim-treesitter/nvim-treesitter-context",
|
||||
"lukas-reineke/lsp-format.nvim",
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
"williamboman/mason.nvim",
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
"j-hui/fidget.nvim",
|
||||
"folke/neodev.nvim",
|
||||
},
|
||||
},
|
||||
}, {
|
||||
install = { colorscheme = { "catppuccin", "one-nvim" } },
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue