fix: The laptop package

This commit is contained in:
Sayantan Santra 2024-03-22 23:41:13 -05:00
parent 2677f2df53
commit 28771e443a
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

View file

@ -1,14 +1,14 @@
-- Automatically bootstrap lazy.nvim -- Automatically bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
"git", "git",
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"https://github.com/folke/lazy.nvim.git", "https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release "--branch=stable", -- latest stable release
lazypath, lazypath,
}) })
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
@ -28,15 +28,15 @@ require("lazy").setup({
-- LSP related plugins -- LSP related plugins
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp", -- For LSP completion "hrsh7th/nvim-cmp", -- For LSP completion
"hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer", "hrsh7th/cmp-buffer",
"hrsh7th/cmp-omni", -- For LaTeX completion "hrsh7th/cmp-omni", -- For LaTeX completion
"hrsh7th/cmp-path", "hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline", "hrsh7th/cmp-cmdline",
"SirVer/ultisnips", -- For snippets "SirVer/ultisnips", -- For snippets
-- Support programming terms -- Support programming terms
{ "psliwka/vim-dirtytalk", build = ":DirtytalkUpdate" }, { "psliwka/vim-dirtytalk", build = ":DirtytalkUpdate" },
-- vim-moonfly theme -- vim-moonfly theme
{ "bluz71/vim-moonfly-colors", as = "moonfly" }, { "bluz71/vim-moonfly-colors", as = "moonfly" },
-- Rust tools -- Rust tools
@ -49,7 +49,7 @@ require("lazy").setup({
"lervag/vimtex", "lervag/vimtex",
-- Formatter -- Formatter
"stevearc/conform.nvim", "stevearc/conform.nvim",
"junegunn/fzf.vim",
"kylechui/nvim-surround", "kylechui/nvim-surround",
"junegunn/fzf",
"junegunn/fzf.vim",
}) })