Skip to content

Instantly share code, notes, and snippets.

@dsewnr
Created February 18, 2025 01:57
Show Gist options
  • Save dsewnr/a2650f62dbe05f5a4b8e1bd063b95d4e to your computer and use it in GitHub Desktop.
Save dsewnr/a2650f62dbe05f5a4b8e1bd063b95d4e to your computer and use it in GitHub Desktop.
My LunarVim Config
-- Read the docs: https://www.lunarvim.org/docs/configuration
-- Example configs: https://github.com/LunarVim/starter.lvim
-- Video Tutorials: https://www.youtube.com/watch?v=sFA9kX-Ud_c&list=PLhoH5vyxr6QqGu0i7tt_XoVK9v-KvZ3m6
-- Forum: https://www.reddit.com/r/lunarvim/
-- Discord: https://discord.com/invite/Xb9B4Ny
lvim.colorscheme = "onedark_dark"
lvim.plugins = {
{ "almo7aya/openingh.nvim" },
{ "olimorris/onedarkpro.nvim" },
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
keywords = {
NOTE = { icon = " ", color = "hint", alt = { "INFO", "DEBUG" } },
},
}
},
{ "kevinhwang91/nvim-bqf" },
{
"hedyhli/outline.nvim",
config = function()
-- Example mapping to toggle outline
vim.keymap.set("n", "<leader>o", "<cmd>Outline<CR>",
{ desc = "Toggle Outline" })
require("outline").setup {
-- Your setup opts here (leave empty to use defaults)
}
end,
}
}
-- almo7aya/openingh.nvim
-- lvim.keys.normal_mode["<Leader>gr"] = {":OpenInGHRepo <CR>"}
lvim.keys.normal_mode["<Leader>gf"] = { ":OpenInGHFile <CR>" }
lvim.keys.visual_mode["<Leader>gf"] = { ":OpenInGHFileLines <CR>" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment