-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
Hey 👋 What does the entry in your rocks.toml look like?
|
Beta Was this translation helpful? Give feedback.
-
[plugins]
#"image.nvim" = "1.2.0"
"tmux.nvim" = "scm"
"rocks-config.nvim" = "1.5.0"
nvim-surround = "2.1.5"
"twilight.nvim"= "1.0.0"
"vim-nightfly-colors"= "scm"
neorg = "8.4.0"
nvim-lspconfig = "0.1.7"
tree-sitter-lua = "scm"
"rocks-treesitter.nvim" = "scm"
tree-sitter-vimdoc = "scm"
"rocks-git.nvim" = "1.5.0"
"cmp-nvim-lsp" = "scm"
"telescope.nvim" = "scm"
"oil.nvim" = "2.8.0"
"zen-mode.nvim" = "scm"
nvim-possession = "0.0.13"
"rocks.nvim" = "2.27.1"
tree-sitter-markdown = "scm"
"lualine.nvim" = "scm"
[plugins.nvim-treesitter]
git = "nvim-treesitter/nvim-treesitter"
rev = "v0.9.2^{}"
# LuaRocks nvim-cmp is outdated use github source
[plugins.nvim-cmp]
git = "hrsh7th/nvim-cmp"
[plugins.zen-mode.config]
plugins = { tmux = { enabled = true },alacritty = { enabled = true, font = "20" } }
[config]
plugins_dir = "plugins/"
auto_setup = true |
Beta Was this translation helpful? Give feedback.
-
The problem is that you have: "zen-mode.nvim" = "scm" but also [plugins.zen-mode.config] which are two different entries (with different keys). If you change it to [plugins."zen-mode.nvim"]
version = "scm"
config = { plugins = { tmux = { enabled = true },alacritty = { enabled = true, font = "20" } } } it won't throw any errors. |
Beta Was this translation helpful? Give feedback.
-
I tried that too, before posting.
|
Beta Was this translation helpful? Give feedback.
-
Also solving zen-mode problem doesn't solve the issue I made (you closed it). The error message is recursively unhelpful. |
Beta Was this translation helpful? Give feedback.
🤔 I guess that's invalid toml. Try this: