telescope,neo-tree,lsp config

This commit is contained in:
gregladden 2024-03-08 16:58:39 -06:00
parent e0f68cbc51
commit cc3f80c743
9 changed files with 190 additions and 28 deletions

View file

@ -1,6 +1,3 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
@ -14,30 +11,9 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
local plugins = {
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
{
'nvim-telescope/telescope.nvim', tag = '0.1.5',
dependencies = { 'nvim-lua/plenary.nvim' }
},
{"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"}
}
local opts = {}
require("lazy").setup(plugins, opts)
vim.keymap.set('n', '<leader>sf', require('telescope.builtin').find_files, { desc = '[S]earch [F]iles' })
vim.keymap.set('n', '<leader>sg', require('telescope.builtin').live_grep, { desc = '[S]earch by [G]rep' })
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
require("catppuccin").setup()
vim.cmd.colorscheme "catppuccin"
require("vim-options")
require("lazy").setup("plugins")