This commit is contained in:
2025-08-05 17:01:27 +02:00
parent 3929be281b
commit f80e1dd013
13 changed files with 128 additions and 43 deletions

View File

@@ -0,0 +1,9 @@
-- header
-- https://github.com/attilarepka/header.nvim
return {
{
'attilarepka/header.nvim',
config = true,
},
}

View File

@@ -72,6 +72,26 @@ return {
local commenter = require 'mini.comment'
commenter.setup {}
-- Minimal and fast tabline showing listed buffers
local tabline = require 'mini.tabline'
tabline.setup {}
-- Work with trailing whitespace
local trailspace = require 'mini.trailspace'
trailspace.setup {}
-- Highlight word under cursor
local cursorword = require 'mini.cursorword'
cursorword.setup {}
-- Animate common Neovim actions
local animate = require 'mini.animate'
animate.setup {}
-- Buffer removing (unshow, delete, wipeout), which saves window layout
local bufremove = require 'mini.bufremove'
bufremove.setup {}
-- ... and there is more!
-- Check out: https://github.com/echasnovski/mini.nvim
end,

View File

@@ -1,26 +0,0 @@
-- Tokyonight
-- https://github.com/folke/tokyonight.nvim
return {
{ -- You can easily change to a different colorscheme.
-- Change the name of the colorscheme plugin below, and then
-- change the command in the config to whatever the name of that colorscheme is.
--
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'folke/tokyonight.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup {
styles = {
comments = { italic = false }, -- Disable italics in comments
},
}
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
end,
},
}