clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

added chatGPT plugin

sspaeti ab392e1d 774110e3

+21 -1
+21 -1
nvim/lua/sspaeti/lazy-plugs.lua
··· 216 216 end, 217 217 }, 218 218 { 219 + "jackMort/ChatGPT.nvim", 220 + event = "VeryLazy", 221 + config = function() 222 + require("chatgpt").setup({ 223 + async_api_key_cmd = "echo 'OPENAI_API_KEY'", 224 + }) 225 + end, 226 + dependencies = { 227 + "MunifTanjim/nui.nvim", 228 + "nvim-lua/plenary.nvim", 229 + "nvim-telescope/telescope.nvim" 230 + } 231 + }, 232 + { 219 233 "github/copilot.vim", 220 234 event = "VeryLazy", 221 235 -- config = function() ··· 262 276 263 277 --Markdown (or any Outline) 264 278 { "simrat39/symbols-outline.nvim", event = "VeryLazy" }, 265 - { "stevearc/aerial.nvim", event = "VeryLazy" }, 279 + { "stevearc/aerial.nvim", 280 + event = "VeryLazy", 281 + dependencies = { 282 + "nvim-treesitter/nvim-treesitter", 283 + "nvim-tree/nvim-web-devicons" 284 + } 285 + }, 266 286 -- use({ "iamcco/markdown-preview.nvim", build = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" }, }) 267 287 ----Obsidian 268 288 -- (optional) recommended for syntax highlighting, folding, etc if you're not using nvim-treesitter: