diff --git a/lua/plugins/14-options.lua b/lua/plugins/14-options.lua index a238a55..19f9992 100644 --- a/lua/plugins/14-options.lua +++ b/lua/plugins/14-options.lua @@ -22,10 +22,15 @@ return { foldmethod = "syntax", foldnestmax = 150, grepprg = vim.fn.executable("rg") and "rg --vimgrep" or nil, - guifont = { "VictorMono Nerd Font", "Hack Nerd Font Mono", ":h10" }, + guifont = { + "VictorMono Nerd Font", + "Hack Nerd Font Mono", + ":h10", + }, listchars = { tab = "> ", extends = ">", precedes = "<", space = "ยท" }, number = true, path = vim.list_extend(vim.opt.path:get(), { "**" }), + pumblend = 0, relativenumber = false, shiftwidth = 4, signcolumn = "auto", diff --git a/lua/plugins/15-mappings.lua b/lua/plugins/15-mappings.lua index 7a9d9b6..f339787 100644 --- a/lua/plugins/15-mappings.lua +++ b/lua/plugins/15-mappings.lua @@ -5,7 +5,10 @@ return { opts = { mappings = { n = { - ["e"] = { "Neotree toggle reveal reveal_force_cwd", desc = "Toggle Explorer" }, + ["e"] = { + "Neotree toggle reveal reveal_force_cwd", + desc = "Toggle Explorer", + }, }, t = { [""] = [[]], diff --git a/lua/plugins/40-heirline.lua b/lua/plugins/40-heirline.lua index 9b89597..54d8fba 100644 --- a/lua/plugins/40-heirline.lua +++ b/lua/plugins/40-heirline.lua @@ -21,7 +21,9 @@ return { opts.statusline = { hl = "statusline", - comp.mode({ mode_text = { hl = { bold = true }, padding = { left = 1, right = 1 } } }), + comp.mode({ + mode_text = { hl = { bold = true }, padding = { left = 1, right = 1 } }, + }), comp.file_info({ filetype = false, filename = { @@ -53,11 +55,15 @@ return { end opts.winbar = { - init = function(self) self.bufnr = vim.api.nvim_get_current_buf() end, + init = function(self) + self.bufnr = vim.api.nvim_get_current_buf() + end, fallthrough = false, { -- Display file path when window is not active - condition = function() return not status.condition.is_active() end, + condition = function() + return not status.condition.is_active() + end, { -- Set display priority to hide when component is too big to fit flexible = 1, diff --git a/stylua.toml b/stylua.toml index 66068bb..08b4575 100644 --- a/stylua.toml +++ b/stylua.toml @@ -1,8 +1,8 @@ -column_width = 120 +column_width = 100 line_endings = "Unix" indent_type = "Spaces" call_parentheses = "Always" -collapse_simple_statement = "Always" +collapse_simple_statement = "Never" [sort_requires] enabled = true