diff options
| author | opalmay <[email protected]> | 2023-01-12 09:59:00 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-12 09:59:00 +0200 | 
| commit | f4ec3fc6200cbc160bc0498c4ba63626cd030314 (patch) | |
| tree | 2da4662e8b923b29437337ee14c2e3df21a28586 | |
| parent | d7a9e6244fed25fd4b1bb393cc5a3c1aee24b3bb (diff) | |
refactor: move to upstream lir (#3711)
* refactor: move to upstream lir
* chore: lint
| -rw-r--r-- | lua/lvim/core/lir.lua | 5 | ||||
| -rw-r--r-- | lua/lvim/plugins.lua | 2 | ||||
| -rw-r--r-- | snapshots/default.json | 2 | 
3 files changed, 6 insertions, 3 deletions
| diff --git a/lua/lvim/core/lir.lua b/lua/lvim/core/lir.lua index d60881e2..9844c41f 100644 --- a/lua/lvim/core/lir.lua +++ b/lua/lvim/core/lir.lua @@ -19,7 +19,10 @@ M.config = function()    lvim.builtin.lir = vim.tbl_extend("force", lvim.builtin.lir, {      show_hidden_files = false,      ignore = {}, -- { ".DS_Store" "node_modules" } etc. -    devicons_enable = true, +    devicons = { +      enable = true, +      highlight_dirname = true, +    },      mappings = {        ["l"] = actions.edit,        ["<CR>"] = actions.edit, diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index d14a4f0b..041e5fe0 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -125,7 +125,7 @@ local core_plugins = {    },    -- Lir    { -    "LunarVim/lir.nvim", +    "tamago324/lir.nvim",      config = function()        require("lvim.core.lir").setup()      end, diff --git a/snapshots/default.json b/snapshots/default.json index b9801e1c..a68bd5d6 100644 --- a/snapshots/default.json +++ b/snapshots/default.json @@ -39,7 +39,7 @@      "commit": "d211027"    },    "lir.nvim": { -    "commit": "ae190c3" +    "commit": "364277d"    },    "lualine.nvim": {      "commit": "d8c392d" | 
