From 4a4c82f3a6c0de0e7bd0abda55bcc5969601307c Mon Sep 17 00:00:00 2001 From: Delvin Yamoah Date: Thu, 16 Apr 2026 10:19:55 +0000 Subject: [PATCH] just wanted to mess with the quiet scheme --- lazyvim.json | 9 +++++++++ lua/custom/plugins/lualine.lua | 14 ++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 lazyvim.json create mode 100644 lua/custom/plugins/lualine.lua diff --git a/lazyvim.json b/lazyvim.json new file mode 100644 index 00000000..dc3e179d --- /dev/null +++ b/lazyvim.json @@ -0,0 +1,9 @@ +{ + "extras": [ + + ], + "news": { + "NEWS.md": "11866" + }, + "version": 8 +} \ No newline at end of file diff --git a/lua/custom/plugins/lualine.lua b/lua/custom/plugins/lualine.lua new file mode 100644 index 00000000..305ad7bc --- /dev/null +++ b/lua/custom/plugins/lualine.lua @@ -0,0 +1,14 @@ +return { + 'nvim-lualine/lualine.nvim', + dependencies = { 'nvim-tree/nvim-web-devicons' }, + config = function() + require('lualine').setup { + options = { + icons_enabled = false, + -- component_separators = { left = '|', right = '|'}, + -- section_separators = { left = '', right = '' }, + path = 1, + }, + } + end, +}