diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index a04e85a..34110e9 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -335,9 +335,9 @@ return require('packer').startup({function() -- require("twilight").setup() -- end, -- } - -- use { -- matchup: Use the percent (%) key for more things - -- 'andymass/vim-matchup', - -- } + use { -- matchup: Use the percent (%) key for more things + 'andymass/vim-matchup', + } use { -- indentline: Line indent indicators 'lukas-reineke/indent-blankline.nvim', config = function() @@ -422,6 +422,18 @@ return require('packer').startup({function() }) end } + use { -- faust-nvim: faust integration + 'madskjeldgaard/faust-nvim', + config = function() + require 'faust-nvim' + require 'faust-nvim'.load_snippets() + end, + requires = { + 'vijaymarupudi/nvim-fzf', + 'L3MON4D3/LuaSnip' + }--, + -- run = require'faust-nvim'.post_install, -- Generate documentation etc (currently doesn't work it seems) + } -- Conveniences use { -- sort motion: (gs) @@ -521,16 +533,9 @@ return require('packer').startup({function() } use { -- ts-context-commentstring: set commentstring based on context from treesitter (two langs in one file) 'JoosepAlviste/nvim-ts-context-commentstring', - requires = { 'nvim-treesitter/nvim-treesitter' }, - config = function() - require'nvim-treesitter.configs'.setup { - context_commentstring = { - enable = true, - enable_autocmd = false, - }, - } - end, + requires = { 'nvim-treesitter/nvim-treesitter', }, } + use { -- vim-rooter: cd to the root of a project when opening a file or folder 'notjedi/nvim-rooter.lua', }