add: disable lualine if crunner open

This commit is contained in:
asep.komarudin 2024-05-22 17:33:15 +07:00
parent 23cd80d925
commit 3c07e3d75e
2 changed files with 102 additions and 101 deletions

View file

@ -37,10 +37,10 @@
"nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" }, "nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" },
"nvim-scrollview": { "branch": "main", "commit": "c29c5f69d37040a1fac88cbea7f5e6f06f0aff4d" }, "nvim-scrollview": { "branch": "main", "commit": "c29c5f69d37040a1fac88cbea7f5e6f06f0aff4d" },
"nvim-tree.lua": { "branch": "master", "commit": "2bc725a3ebc23f0172fb0ab4d1134b81bcc13812" }, "nvim-tree.lua": { "branch": "master", "commit": "2bc725a3ebc23f0172fb0ab4d1134b81bcc13812" },
"nvim-treesitter": { "branch": "master", "commit": "73fb37ed77b18ac357ca8e6e35835a8db6602332" }, "nvim-treesitter": { "branch": "master", "commit": "30de5e7e9486fb1b1b8c2a1e71052b13f94f1cb0" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "5f9bf4b1ead7707e4e74e5319ee56bdc81fb73db" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "5f9bf4b1ead7707e4e74e5319ee56bdc81fb73db" },
"nvim-ts-autotag": { "branch": "main", "commit": "62db4b3054ec6847e5cb189b4dea452ce0c7ad7f" }, "nvim-ts-autotag": { "branch": "main", "commit": "62db4b3054ec6847e5cb189b4dea452ce0c7ad7f" },
"nvim-ts-context-commentstring": { "branch": "main", "commit": "cbab9ad88036915beebd13b47e100743ff2ed2d5" }, "nvim-ts-context-commentstring": { "branch": "main", "commit": "cb064386e667def1d241317deed9fd1b38f0dc2e" },
"nvim-ufo": { "branch": "main", "commit": "a5390706f510d39951dd581f6d2a972741b3fa26" }, "nvim-ufo": { "branch": "main", "commit": "a5390706f510d39951dd581f6d2a972741b3fa26" },
"nvim-web-devicons": { "branch": "master", "commit": "5b9067899ee6a2538891573500e8fd6ff008440f" }, "nvim-web-devicons": { "branch": "master", "commit": "5b9067899ee6a2538891573500e8fd6ff008440f" },
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" }, "plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },

View file

@ -3,7 +3,7 @@ return {
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
event = { "InsertEnter", "BufRead", "BufNewFile" }, event = { "InsertEnter", "BufRead", "BufNewFile" },
config = function() config = function()
local component = require("user.utils.lualine_component") local component = require "user.utils.lualine_component"
local treesitter = component.treesitter local treesitter = component.treesitter
local lsp_info = component.lsp_info local lsp_info = component.lsp_info
local diagnostics = component.diagnostics local diagnostics = component.diagnostics
@ -55,7 +55,7 @@ return {
bubbles_theme = vim.fn.fnamemodify("auto", ":t") bubbles_theme = vim.fn.fnamemodify("auto", ":t")
end end
require("lualine").setup({ require("lualine").setup {
options = { options = {
theme = bubbles_theme, theme = bubbles_theme,
component_separators = { left = "", right = "" }, component_separators = { left = "", right = "" },
@ -73,6 +73,7 @@ return {
"mason", "mason",
"neo-tree", "neo-tree",
"startuptime", "startuptime",
"crunner",
}, },
always_divide_middle = true, always_divide_middle = true,
}, },
@ -98,7 +99,7 @@ return {
}, },
tabline = {}, tabline = {},
extensions = {}, extensions = {},
}) }
end, end,
}, },
} }