We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.10.0-dev-3122+ga0a189a8e
Ubuntu 22.04
Hope the cmdline is always shown.
cmdline is always shown.
local root = vim.fn.fnamemodify("./.repro", ":p") vim.opt.inccommand = "split" -- set stdpaths to use .repro for _, name in ipairs({ "config", "data", "state", "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 vim.fn.system({ "git", "clone", "--filter=blob:none", "--single-branch", "https://github.com/folke/lazy.nvim.git", lazypath, }) end vim.opt.runtimepath:prepend(lazypath) -- install plugins local plugins = { "folke/tokyonight.nvim", { "folke/noice.nvim", dependencies = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify", }, }, } require("lazy").setup(plugins, { root = root .. "/plugins", }) -- add anything else here vim.opt.termguicolors = true vim.cmd([[colorscheme tokyonight]]) require("noice").setup()
The text was updated successfully, but these errors were encountered:
8d924eb
Successfully merging a pull request may close this issue.
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.10.0-dev-3122+ga0a189a8e
Operating system/version
Ubuntu 22.04
Describe the bug
Hope the cmdline is always shown.
Steps To Reproduce
Expected Behavior
cmdline is always shown.
Repro
The text was updated successfully, but these errors were encountered: