Reformat all neovim configuration files with stylua
This commit is contained in:
parent
d69a00df7e
commit
bddcb64be8
16 changed files with 414 additions and 352 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue