clean up: auto format

This commit is contained in:
Baipyrus 2024-03-01 09:36:17 +01:00
parent 4d400d1e90
commit 9cb2527b25
2 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ return {
-- Useful for getting pretty icons, but requires special font. -- Useful for getting pretty icons, but requires special font.
-- If you already have a Nerd Font, or terminal set up with fallback fonts -- If you already have a Nerd Font, or terminal set up with fallback fonts
-- you can enable this -- you can enable this
{ 'nvim-tree/nvim-web-devicons' } { 'nvim-tree/nvim-web-devicons' },
}, },
config = function() config = function()
-- Telescope is a fuzzy finder that comes with a lot of different things that -- Telescope is a fuzzy finder that comes with a lot of different things that
@ -78,6 +78,7 @@ return {
-- See `:help telescope.builtin` -- See `:help telescope.builtin`
local builtin = require 'telescope.builtin' local builtin = require 'telescope.builtin'
local actions = require 'telescope.actions' local actions = require 'telescope.actions'
-- Find files parameters -- Find files parameters
local find_command = { local find_command = {
'rg', 'rg',
@ -180,7 +181,7 @@ return {
-- This will ignore the directories you specified -- This will ignore the directories you specified
find_command = find_command, find_command = find_command,
attach_mappings = attach_mappings, attach_mappings = attach_mappings,
cwd = vim.fn.stdpath 'config' cwd = vim.fn.stdpath 'config',
} }
end, { desc = '[S]earch [N]eovim files' }) end, { desc = '[S]earch [N]eovim files' })
end, end,

View File

@ -13,7 +13,6 @@ require('lazy').setup {
-- [[ Plugin Specs list ]] -- [[ Plugin Specs list ]]
-- NOTE: First, some plugins that don't require any configuration -- NOTE: First, some plugins that don't require any configuration
-- Discord RPC -- Discord RPC
'andweeb/presence.nvim', 'andweeb/presence.nvim',
@ -37,7 +36,7 @@ require('lazy').setup {
{ 'numToStr/Comment.nvim', opts = {} }, { 'numToStr/Comment.nvim', opts = {} },
-- Setup neovim lua configuration -- Setup neovim lua configuration
{ "folke/neodev.nvim", opts = {} }, { 'folke/neodev.nvim', opts = {} },
-- modular approach: using `require 'path/name'` will -- modular approach: using `require 'path/name'` will
-- include a plugin definition from file lua/path/name.lua -- include a plugin definition from file lua/path/name.lua