master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit 518f32d3bb - Show all commits

View File

@@ -6,8 +6,8 @@ local silent_noremap = { noremap = true, silent = true }
project_files = function() project_files = function()
local opts = {} -- define here if you want to define something local opts = {} -- define here if you want to define something
local ok = pcall(require"telescope.builtin".git_files, opts) local ok = pcall(require "telescope.builtin".git_files, opts)
if not ok then require"telescope.builtin".find_files(opts) end if not ok then require "telescope.builtin".find_files(opts) end
end end
command_center.add({ command_center.add({
@@ -230,8 +230,8 @@ command_center.add({
description = 'Symbols outline', description = 'Symbols outline',
cmd = '<CMD>AerialToggle<CR>', cmd = '<CMD>AerialToggle<CR>',
keybindings = { keybindings = {
{ 'n', '<leader>s', silent_noremap }, { 'n', '<leader>s', silent_noremap },
{ 'n', '<Space>s', silent_noremap }, { 'n', '<Space>s', silent_noremap },
}, },
}, },
{ {
@@ -243,7 +243,3 @@ command_center.add({
cmd = '<CMD>set guifont=JetBrainsMonoNL\\ NF:h9<CR>', cmd = '<CMD>set guifont=JetBrainsMonoNL\\ NF:h9<CR>',
}, },
}) })