From d10380ab79e3287064ef6af194ad107af98cf8f9 Mon Sep 17 00:00:00 2001 From: Jason Schneekloth Date: Wed, 3 Dec 2025 23:11:07 -0600 Subject: [PATCH] Updating some of the default configs --- init.lua | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index b98ffc61..5579ad2d 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal -vim.g.have_nerd_font = false +vim.g.have_nerd_font = true -- [[ Setting options ]] -- See `:help vim.o` @@ -441,7 +441,7 @@ require('lazy').setup({ vim.keymap.set('n', '/', function() -- You can pass additional configuration to Telescope to change the theme, layout, etc. builtin.current_buffer_fuzzy_find(require('telescope.themes').get_dropdown { - winblend = 10, + winblend = 0, previewer = false, }) end, { desc = '[/] Fuzzily search in current buffer' }) @@ -462,6 +462,18 @@ require('lazy').setup({ end, }, + -- Neo-tree.nvim https://github.com/nvim-neo-tree + { + 'nvim-neo-tree/neo-tree.nvim', + branch = 'v3.x', + dependencies = { + 'nvim-lua/plenary.nvim', + 'MunifTanjim/nui.nvim', + 'nvim-tree/nvim-web-devicons', -- optional, but recommended + }, + lazy = false, -- neo-tree will lazily load itself + }, + -- LSP Plugins { -- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins