Compare commits

..

No commits in common. "b93b0bd73517f2bfd4587cda414a82fa15870c0a" and "9fbc411dabeec77eaf0624a5714794d54bf1d2e5" have entirely different histories.

5 changed files with 21 additions and 17 deletions

@ -6,10 +6,8 @@
FROM quay.io/fedora/fedora:41
# === setup system ===
RUN dnf update -y && \
dnf copr enable -y atim/lazygit && \
dnf -y install neovim unzip \
bash-completion zoxide fd-find chafa lazygit procps \
RUN dnf update -y && dnf -y install neovim unzip \
bash-completion zoxide fd-find chafa procps \
git go npm
# === setup container user ===

@ -16,23 +16,33 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {
-- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- import/override with your plugins
{ import = "plugins" },
},
defaults = {
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
lazy = false,
version = false,
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
-- have outdated releases, which may break your Neovim install.
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = {},
checker = {
enabled = true,
notify = true,
},
enabled = true, -- check for plugin updates periodically
notify = false, -- notify on update
}, -- automatically check for plugin updates
performance = {
rtp = {
-- disable some rtp plugins
disabled_plugins = {
"gzip",
"netrwPlugin",
-- "matchit",
-- "matchparen",
-- "netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",

@ -1,5 +1,5 @@
-- Set some custom options.
local opt = vim.o
local opt = vim.opt
local global = vim.g
-- Set target text width for gww to 60.

@ -1,6 +1,6 @@
-- Configure rose-pine and gruvbox-material colorschemes.
return {
{ "rose-pine/neovim", name = "rose-pine" },
{ "rose-pine/neovim" },
{ "sainnhe/gruvbox-material" },
{
"LazyVim/LazyVim",

@ -5,7 +5,6 @@ return {
"folke/snacks.nvim",
opts = {
dashboard = { enabled = false },
notifier = { level = vim.log.levels.WARN },
},
},
{
@ -17,9 +16,6 @@ return {
},
-- Disable unused plugins.
{ "folke/flash.nvim", enabled = false },
{ "folke/todo-comments.nvim", enabled = false },
{ "folke/trouble.nvim", enabled = false },
{ "MagicDuck/grug-far.nvim", enabled = false },
{ "akinsho/bufferline.nvim", enabled = false },
{ "flash.nvim", enabled = false },
{ "bufferline.nvim", enabled = false },
}