add custom plugins
This commit is contained in:
parent
c3ae716fb3
commit
de8abea972
5 changed files with 75 additions and 2 deletions
6
init.lua
6
init.lua
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue