Compare commits

...

2 Commits

Author SHA1 Message Date
Michel 9a1402fb94 feat(lualine): show root_dir in dark yellow 2023-10-16 19:48:25 +02:00
Michel fe8cf560c2 feat(lua): add luapad plugin 2023-10-16 19:47:51 +02:00
3 changed files with 9 additions and 1 deletions

View File

@ -34,6 +34,7 @@
"nvim-cmp": { "branch": "main", "commit": "5dce1b778b85c717f6614e3f4da45e9f19f54435" },
"nvim-lint": { "branch": "master", "commit": "6d596b87862909370f4d1e6535cc9fad80c89fe6" },
"nvim-lspconfig": { "branch": "master", "commit": "e49b1e90c1781ce372013de3fa93a91ea29fc34a" },
"nvim-luapad": { "branch": "master", "commit": "a5b3d6aa1fe5fe75e6124927392a9d3a60a0ecce" },
"nvim-notify": { "branch": "master", "commit": "e4a2022f4fec2d5ebc79afa612f96d8b11c627b3" },
"nvim-spectre": { "branch": "master", "commit": "696cff781a4a7ecc91549736835e2acbd00fe859" },
"nvim-treesitter": { "branch": "master", "commit": "49e71322db582147ce8f4df1853d9dab08da0826" },

View File

@ -50,7 +50,7 @@ return {
opts.sections = {
lualine_a = { "mode" },
lualine_b = {
Util.lualine.root_dir(),
Util.lualine.root_dir({ color = { fg = "#bf7b00" } }),
{ "filetype", icon_only = true, separator = "", padding = { left = 1, right = 0 } },
{ Util.lualine.pretty_path() },
},

7
lua/plugins/lua.lua Normal file
View File

@ -0,0 +1,7 @@
return {
{
"rafcamlet/nvim-luapad",
cmd = { "Luapad" },
config = true,
},
}