diff --git a/lazy-lock.json b/lazy-lock.json index 6c6fcbd..b73f785 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -7,6 +7,7 @@ "cmp-vsnip": { "branch": "main", "commit": "989a8a73c44e926199bfd05fa7a516d51f2d2752" }, "conform.nvim": { "branch": "master", "commit": "2b2b30260203af3b93a7470ac6c8457ddd6e32d9" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, + "lualine.nvim": { "branch": "master", "commit": "15884cee63a8c205334ab13ab1c891cd4d27101a" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "d39a75bbce4b8aad5d627191ea915179c77c100f" }, "mason-null-ls.nvim": { "branch": "main", "commit": "de19726de7260c68d94691afb057fa73d3cc53e7" }, "mason.nvim": { "branch": "main", "commit": "888d6ee499d8089a3a4be4309d239d6be1c1e6c0" }, diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index 24ce5cb..da37fe0 100644 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -83,8 +83,7 @@ return { "windwp/nvim-autopairs", event = "InsertEnter", config = true, - -- use opts = {} for passing setup options - -- this is equivalent to setup({}) function + opts = {}, }, { "rmagatti/auto-session", @@ -102,4 +101,13 @@ return { }, }, }, + { + "nvim-lualine/lualine.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + opts = { + options = { + theme = "jellybeans", + }, + }, + }, }