mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-13 20:43:49 +00:00
clean up: auto format
This commit is contained in:
parent
4d400d1e90
commit
9cb2527b25
@ -30,7 +30,7 @@ return {
|
||||
-- Useful for getting pretty icons, but requires special font.
|
||||
-- If you already have a Nerd Font, or terminal set up with fallback fonts
|
||||
-- you can enable this
|
||||
{ 'nvim-tree/nvim-web-devicons' }
|
||||
{ 'nvim-tree/nvim-web-devicons' },
|
||||
},
|
||||
config = function()
|
||||
-- Telescope is a fuzzy finder that comes with a lot of different things that
|
||||
@ -78,6 +78,7 @@ return {
|
||||
-- See `:help telescope.builtin`
|
||||
local builtin = require 'telescope.builtin'
|
||||
local actions = require 'telescope.actions'
|
||||
|
||||
-- Find files parameters
|
||||
local find_command = {
|
||||
'rg',
|
||||
@ -180,7 +181,7 @@ return {
|
||||
-- This will ignore the directories you specified
|
||||
find_command = find_command,
|
||||
attach_mappings = attach_mappings,
|
||||
cwd = vim.fn.stdpath 'config'
|
||||
cwd = vim.fn.stdpath 'config',
|
||||
}
|
||||
end, { desc = '[S]earch [N]eovim files' })
|
||||
end,
|
||||
|
@ -13,7 +13,6 @@ require('lazy').setup {
|
||||
|
||||
-- [[ Plugin Specs list ]]
|
||||
|
||||
|
||||
-- NOTE: First, some plugins that don't require any configuration
|
||||
-- Discord RPC
|
||||
'andweeb/presence.nvim',
|
||||
@ -37,7 +36,7 @@ require('lazy').setup {
|
||||
{ 'numToStr/Comment.nvim', opts = {} },
|
||||
|
||||
-- Setup neovim lua configuration
|
||||
{ "folke/neodev.nvim", opts = {} },
|
||||
{ 'folke/neodev.nvim', opts = {} },
|
||||
|
||||
-- modular approach: using `require 'path/name'` will
|
||||
-- include a plugin definition from file lua/path/name.lua
|
||||
|
Loading…
Reference in New Issue
Block a user