From 7acbafb7fe81cd086d96ea8d40d15c2b15a4ef47 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 3 May 2022 19:35:07 +0200 Subject: [PATCH] fix: missing CR --- configs/nvim/lua/configs/command-center.lua | 22 ++++++--------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/configs/nvim/lua/configs/command-center.lua b/configs/nvim/lua/configs/command-center.lua index e2fb683..1388408 100644 --- a/configs/nvim/lua/configs/command-center.lua +++ b/configs/nvim/lua/configs/command-center.lua @@ -4,25 +4,20 @@ local noremap = { noremap = true } command_center.add({ { description = "Show Sessions", - cmd = ":lua require('session-lens').search_session()", + cmd = ":lua require('session-lens').search_session()", keybindings = { "n", "", noremap } }, + { + description = "ZenMode", + cmd = "ZenMode", + keybindings = { "n", "z", noremap } + }, { description = "Search inside current buffer", cmd = "Telescope current_buffer_fuzzy_find", keybindings = { "n", "fl", noremap }, - }, { - -- If no descirption is specified, command is used to replace descirption by default - -- You can change this behavior in settigns - cmd = "Telescope find_files", }, { - -- If no keybindings specified, no keybindings will be displayed or registered - description = "Find hidden files", - cmd = "Telescope find_files hidden=true", - }, - { - -- You can specify multiple keybindings for the same command ... description = "Show document symbols", cmd = "Telescope lsp_document_symbols", }, @@ -34,9 +29,4 @@ command_center.add({ description = "(TS) Organize Imports", cmd = "OrganizeImports" }, - { - description = "ZenMode", - cmd = "ZenMode", - keybindings = { "n", "z", noremap } - } })