return { { "Mofiqul/vscode.nvim", priority = 1000, -- wichtig: vor anderen UI-Plugins laden lazy = false, config = function() local vscode = require("vscode") vscode.setup({ style = "dark", transparent = false, italic_comments = true, underline_links = true, disable_nvimtree_bg = true, }) vscode.load() end, }, { "nvim-tree/nvim-tree.lua", dependencies = { "nvim-tree/nvim-web-devicons", }, cmd = { "NvimTreeToggle", "NvimTreeOpen" }, lazy = true, keys = { { "e", "NvimTreeToggle", desc = "Explorer toggle" }, }, opts = { update_focused_file = { enable = true, update_root = false, ignore_list = {}, }, view = { width = 40, cursorline = true, }, renderer = { highlight_opened_files = "all", highlight_git = true, icons = { show = { file = true, folder = true, git = true, }, }, }, filters = { dotfiles = false, }, }, }, { "RRethy/vim-illuminate", event = "BufReadPost", }, { "mattn/calendar-vim", ft = "taskedit", config = function() function CalendarInsertDate(day, month, year) local date = string.format("%04d-%02d-%02d", year, month, day) vim.cmd("wincmd q") vim.cmd("wincmd p") local row, col = unpack(vim.api.nvim_win_get_cursor(0)) local line = vim.api.nvim_get_current_line() for s, _, e in line:gmatch("()(%d%d%d%d%-%d%d%-%d%d)()") do if col + 1 >= s and col + 1 <= e - 1 then vim.api.nvim_buf_set_text(0, row - 1, s - 1, row - 1, e - 1, { date }) return end end vim.api.nvim_put({ date }, "c", true, true) end _G.CalendarInsertDate = CalendarInsertDate vim.g.calendar_action = "v:lua.CalendarInsertDate" vim.g.calendar_monday = 1 vim.g.calendar_wruler = "So Mo Di Mi Do Fr Sa" vim.g.calendar_mruler = "Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez" vim.g.calendar_weeknm = 4 vim.g.calendar_number_of_months = 5 end, }, }