add custom plugins

This commit is contained in:
Joshua McCabe 2024-02-02 14:17:48 +00:00
parent c3ae716fb3
commit de8abea972
5 changed files with 75 additions and 2 deletions

View file

@ -271,7 +271,7 @@ require('lazy').setup({
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
--
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
}, {})
-- [[ Setting options ]]
@ -346,6 +346,7 @@ vim.api.nvim_create_autocmd('TextYankPost', {
-- See `:help telescope` and `:help telescope.setup()`
require('telescope').setup {
defaults = {
vimgrep_arguments = { 'rg', '--hidden', '--color=never', '--no-heading', '--with-filename', '--line-number', '--column', '--smart-case' },
mappings = {
i = {
['<C-u>'] = false,
@ -579,7 +580,8 @@ local servers = {
-- rust_analyzer = {},
-- tsserver = {},
-- html = { filetypes = { 'html', 'twig', 'hbs'} },
phpactor = {},
-- intelephense = {},
lua_ls = {
Lua = {
workspace = { checkThirdParty = false },