-
Checklist
Neovim version (nvim -v)0.10.3 Operating system/versionubuntu Terminal/GUIkitty Describe the bugI installed molten from the community repo but I am getting this error Is it related to heirline ?
Steps to ReproduceEnable molten in Expected behavior. ScreenshotsNo response Additional ContextNo response Minimal configuration-- save as repro.lua
-- run with nvim -u repro.lua
-- DO NOT change the paths
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "runtime", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
-- stylua: ignore
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
-- install plugins
local plugins = {
{ "AstroNvim/AstroNvim", import = "astronvim.plugins" },
{ "AstroNvim/astrocommunity" },
-- add any other plugins/customizations here
{ import = "astrocommunity.pack.python-ruff" },
{ import = "astrocommunity.pack.quarto" },
{ import = "astrocommunity.code-runner.vim-slime" },
{ import = "astrocommunity.media.img-clip-nvim" },
{ import = "astrocommunity.color.headlines-nvim" },
{ import = "astrocommunity.snippet.mini-snippets" },
{ import = "astrocommunity.code-runner.molten-nvim" },
{ import = "astrocommunity.pack.chezmoi" },
{ import = "astrocommunity.pack.json" },
{ import = "astrocommunity.pack.toml" },
{ import = "astrocommunity.diagnostics.trouble-nvim" },
{ import = "astrocommunity.scrolling.mini-animate" },
{ import = "astrocommunity.colorscheme.catppuccin" },
{ import = "astrocommunity.recipes.heirline-vscode-winbar" },
{ import = "astrocommunity.utility.noice-nvim" },
{ import = "astrocommunity.git.diffview-nvim" },
{ import = "astrocommunity.file-explorer.telescope-file-browser-nvim" },
{ import = "astrocommunity.workflow.bad-practices-nvim" },
{ import = "astrocommunity.workflow.hardtime-nvim" },
{ import = "astrocommunity.workflow.precognition-nvim" },
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
-- add anything else here (autocommands, vim.filetype, etc.) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I add to reload my python environment and then run |
Beta Was this translation helpful? Give feedback.
-
Are you using it correctly per the docs of that plugin? |
Beta Was this translation helpful? Give feedback.
-
I missed to installed python depencies in my venv |
Beta Was this translation helpful? Give feedback.
I missed to installed python depencies in my venv