Reformat all neovim configuration files with stylua

This commit is contained in:
Marko Korhonen 2022-10-26 14:08:20 +03:00
parent d69a00df7e
commit bddcb64be8
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
16 changed files with 414 additions and 352 deletions

View file

@ -1,17 +1,17 @@
return function()
local telescope = require('telescope')
local builtin = require('telescope.builtin')
local telescope = require("telescope")
local builtin = require("telescope.builtin")
telescope.setup {
pickers = {find_files = {find_command = {"fd", "-Ht", "f"}}}
}
telescope.setup({
pickers = { find_files = { find_command = { "fd", "-Ht", "f" } } },
})
telescope.load_extension('fzf')
telescope.load_extension('ui-select')
telescope.load_extension('cder')
telescope.load_extension("fzf")
telescope.load_extension("ui-select")
telescope.load_extension("cder")
-- Keybinds
vim.keymap.set('n', '<C-t>', vim.cmd.Telescope)
vim.keymap.set('n', '<C-f>', builtin.find_files)
vim.keymap.set('n', '<C-g>', builtin.live_grep)
-- Keybinds
vim.keymap.set("n", "<C-t>", vim.cmd.Telescope)
vim.keymap.set("n", "<C-f>", builtin.find_files)
vim.keymap.set("n", "<C-g>", builtin.live_grep)
end