I'm pretty new to neovim and am loving paq so far, much simpler than some other options; I am a bit confused on how to set the paq path or other configuration options. If I needed to do that in my init.lua, what would that look like? Thanks in advance!
`
require "paq" {
"savq/paq-nvim"; -- Let Paq manage itself
"neovim/nvim-lspconfig"; -- Mind the semi-colons
"hrsh7th/nvim-compe";
{"lervag/vimtex", opt=true}; -- Use braces when passing options
"nvim-lua/plenary.nvim";
"nvim-telescope/telescope.nvim";
"nvim-treesitter/nvim-treesitter";
"morhetz/gruvbox";
"ms-jpq/chadtree";
"neovim/nvim-lspconfig";
"ms-jpq/coq_nvim";
"ms-jpq/coq.artifacts";
"ms-jpq/coq.thirdparty";
"vim-airline/vim-airline";
"ryanoasis/vim-devicons";
"glepnir/dashboard-nvim";
"liuchengxu/vim-clap";
https://github.com/savq/paq-nvim/blob/6caab059bc15cc61afc7aa7e0515ee06eb550bcf/doc/paq-nvim.txt#L158-L164
I'm pretty new to neovim and am loving paq so far, much simpler than some other options; I am a bit confused on how to set the paq path or other configuration options. If I needed to do that in my init.lua, what would that look like? Thanks in advance!
` require "paq" { "savq/paq-nvim"; -- Let Paq manage itself
} `