this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 68 lines 1.5 kB view raw
1local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" 2if not vim.loop.fs_stat(lazypath) then 3 vim.fn.system({ 4 "git", 5 "clone", 6 "--filter=blob:none", 7 "https://github.com/folke/lazy.nvim.git", 8 "--branch=stable", -- latest stable release 9 lazypath, 10 }) 11end 12vim.opt.rtp:prepend(lazypath) 13 14require("lazy").setup({ 15 spec = { 16 {import = "technoduck.lazy_plugins"} 17 }, 18 change_detection = { notify = false }, 19 rocks = {enabled = false} 20}) 21 22--[[ 23{ 24 25 26 27use { 28 'VonHeikemen/lsp-zero.nvim', 29 branch = 'v2.x', 30 requires = { 31 -- LSP Support 32 {'neovim/nvim-lspconfig'}, -- Required 33 {'williamboman/mason.nvim'}, -- Optional 34 {'williamboman/mason-lspconfig.nvim'}, -- Optional 35 36 37 {'hrsh7th/cmp-buffer'}, 38 {'hrsh7th/cmp-path'}, 39 {'hrsh7th/cmp-cmdline'}, 40 41 -- Autocompletion 42 {'hrsh7th/nvim-cmp'}, -- Required 43 {'hrsh7th/cmp-nvim-lsp'}, -- Required 44 {'hrsh7th/cmp-nvim-lsp-signature-help'}, 45 {'L3MON4D3/LuaSnip', 46 run = "make install_jsregexp", 47requires = { 'rafamadriz/friendly-snippets' }}, -- Required 48 {'saadparwaiz1/cmp_luasnip'}, 49 50 { 'dcampos/nvim-snippy'}, 51 { 'dcampos/cmp-snippy'}, 52 53 } 54} 55 56use {'simrat39/rust-tools.nvim'} 57use { 'nvim-lua/lsp-status.nvim' } 58 59use 'nvim-tree/nvim-web-devicons' 60use { 61 'nvim-lualine/lualine.nvim', 62 requires = { 'nvim-tree/nvim-web-devicons', opt = true } 63} 64 65 66} 67) 68--]]