-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve health check and bug report templ (#102)
- Loading branch information
Showing
3 changed files
with
129 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
-- Example for configuring Neovim to load user-installed installed Lua rocks: | ||
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?/init.lua" | ||
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?.lua" | ||
|
||
-- You should specify your python3 path here \/. | ||
vim.g.python3_host_prog = vim.fn.expand("$HOME") .. "/.virtualenvs/neovim/bin/python3" | ||
|
||
local root = vim.fn.fnamemodify("./.repro", ":p") | ||
|
||
-- 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 = { | ||
{ | ||
"bluz71/vim-moonfly-colors", | ||
lazy = false, | ||
priority = 1000, | ||
config = function() | ||
vim.cmd.syntax("enable") | ||
vim.cmd.colorscheme("moonfly") | ||
|
||
vim.api.nvim_set_hl(0, "MoltenOutputBorder", { link = "Normal" }) | ||
vim.api.nvim_set_hl(0, "MoltenOutputBorderFail", { link = "MoonflyCrimson" }) | ||
vim.api.nvim_set_hl(0, "MoltenOutputBorderSuccess", { link = "MoonflyBlue" }) | ||
end, | ||
}, | ||
{ | ||
"benlubas/molten-nvim", | ||
dependencies = { "3rd/image.nvim" }, | ||
build = ":UpdateRemotePlugins", | ||
init = function() | ||
vim.g.molten_image_provider = "image.nvim" | ||
vim.g.molten_use_border_highlights = true | ||
-- add a few new things | ||
|
||
-- don't change the mappings (unless it's related to your bug) | ||
vim.keymap.set("n", "<localleader>mi", ":MoltenInit<CR>") | ||
vim.keymap.set("n", "<localleader>e", ":MoltenEvaluateOperator<CR>") | ||
vim.keymap.set("n", "<localleader>rr", ":MoltenReevaluateCell<CR>") | ||
vim.keymap.set("v", "<localleader>r", ":<C-u>MoltenEvaluateVisual<CR>gv") | ||
vim.keymap.set("n", "<localleader>os", ":noautocmd MoltenEnterOutput<CR>") | ||
vim.keymap.set("n", "<localleader>oh", ":MoltenHideOutput<CR>") | ||
vim.keymap.set("n", "<localleader>md", ":MoltenDelete<CR>") | ||
end, | ||
}, | ||
{ | ||
"3rd/image.nvim", | ||
opts = { | ||
backend = "kitty", | ||
integrations = {}, | ||
max_width = 100, | ||
max_height = 12, | ||
max_height_window_percentage = math.huge, | ||
max_width_window_percentage = math.huge, | ||
window_overlap_clear_enabled = true, | ||
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" }, | ||
}, | ||
version = "1.1.0", -- or comment out for latest | ||
}, | ||
{ | ||
"nvim-treesitter/nvim-treesitter", | ||
build = ":TSUpdate", | ||
config = function() | ||
require("nvim-treesitter.configs").setup({ | ||
ensure_installed = { | ||
"markdown", | ||
"markdown_inline", | ||
"python", | ||
}, | ||
highlight = { | ||
enable = true, | ||
additional_vim_regex_highlighing = false, | ||
}, | ||
}) | ||
end, | ||
}, | ||
-- add any additional plugins here | ||
} | ||
|
||
require("lazy").setup(plugins, { | ||
root = root .. "/plugins", | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters