From e8bd36899b88285c94c850f0dfce0754d94cfe24 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Mon, 22 Dec 2025 17:37:13 +0100 Subject: Neovim: Neue Konfiguration --- nvim/lua/plugins/ui.lua | 58 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 nvim/lua/plugins/ui.lua (limited to 'nvim/lua/plugins/ui.lua') diff --git a/nvim/lua/plugins/ui.lua b/nvim/lua/plugins/ui.lua new file mode 100644 index 0000000..10c4762 --- /dev/null +++ b/nvim/lua/plugins/ui.lua @@ -0,0 +1,58 @@ +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" }, + keys = { + { "e", "NvimTreeToggle", desc = "Explorer toggle" }, + }, + config = function() + require("nvim-tree").setup({ + view = { + width = 30, + }, + renderer = { + highlight_git = true, + icons = { + show = { + file = true, + folder = true, + git = true, + }, + }, + }, + filters = { + dotfiles = false, + }, + }) + end, + }, + + { + "RRethy/vim-illuminate", + event = "BufReadPost", + }, + +} -- cgit v1.3