diff options
| author | listout <listout@protonmail.com> | 2023-05-04 05:50:45 +0000 |
|---|---|---|
| committer | listout <listout@protonmail.com> | 2023-05-04 05:50:45 +0000 |
| commit | 053dcdee1b2fb63135ac8ecfa174c43fb216a700 (patch) | |
| tree | 83395ee61ed1b65ea3822d6981ee1afa32f13a92 /lua/plugins/plugins.lua | |
| parent | 85dfa645fc4752a6f12b470ed6225fab868ef711 (diff) | |
| download | nvim-053dcdee1b2fb63135ac8ecfa174c43fb216a700.tar.gz | |
nvim: dropping autosource plugin in favor of exrc
With `vim.o.exrc = true` secure .exrc, .nvimrc and .nvim.lua files can
be loaded.
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to '')
| -rw-r--r-- | lua/plugins/plugins.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index e3728e9..a656702 100644 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -58,10 +58,7 @@ return packer.startup(function(use) use {'norcalli/nvim-colorizer.lua'} -- Productivity plugins - use { - "windwp/nvim-autopairs", - config = function() require("nvim-autopairs").setup {} end - } + use {'windwp/nvim-autopairs'} -- Auto pairs use {'preservim/nerdcommenter'} -- Easy commenting use {'dhruvasagar/vim-table-mode', ft = {'markdown', 'markdown.pandoc'} } -- Markdown easy tables use {'junegunn/fzf', run = ":call fzf#install()" } @@ -82,9 +79,6 @@ return packer.startup(function(use) -- Treesitter integration use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' } - -- Better per project settings - use { 'jenterkin/vim-autosource' } - -- Show git signs and stage hunks use { 'lewis6991/gitsigns.nvim' } |
