X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/8de4d1975c84ef549c29f2a1d8b5ccc70f957679..f534f49902f86d157292b5a2ba740c4d7f079741:/nvim/lua/plugins/snacks.lua diff --git a/nvim/lua/plugins/snacks.lua b/nvim/lua/plugins/snacks.lua index 89eec46..65a15aa 100644 --- a/nvim/lua/plugins/snacks.lua +++ b/nvim/lua/plugins/snacks.lua @@ -24,7 +24,9 @@ return { quickfile = { enabled = true }, -- TODO: review if needed scope = { enabled = true }, scroll = { enabled = false }, -- fuck this! - statuscolumn = { enabled = true }, + statuscolumn = { + folds = { open = true }, + }, terminal = { win = { keys = { @@ -49,7 +51,7 @@ return { ---@type snacks.dashboard.Item[] keys = { { icon = " ", key = "f", desc = "Find File", action = ":lua Snacks.dashboard.pick('files')" }, - { icon = " ", key = "n", desc = "New File", action = ":ene | startinsert" }, + { icon = " ", key = "i", desc = "New File", action = ":ene | startinsert" }, { icon = " ", key = "g", desc = "Find Text", action = ":lua Snacks.dashboard.pick('live_grep')" }, { icon = " ", key = "r", desc = "Recent Files", action = ":lua Snacks.dashboard.pick('oldfiles')" }, { icon = " ", key = "c", desc = "Config", action = ":lua Snacks.dashboard.pick('files', {cwd = vim.fn.stdpath('config')})" },