diff --git a/lua/technoduck/lazy_plugins/flutter.lua b/lua/technoduck/lazy_plugins/flutter.lua new file mode 100644 index 0000000..4148995 --- /dev/null +++ b/lua/technoduck/lazy_plugins/flutter.lua @@ -0,0 +1,10 @@ +return { + 'nvim-flutter/flutter-tools.nvim', + requires = { + 'nvim-lua/plenary.nvim', + 'stevearc/dressing.nvim', -- optional for vim.ui.select + }, + config = function () + require("flutter-tools").setup {} -- use defaults + end +} diff --git a/lua/technoduck/lazy_plugins/vimtex.lua b/lua/technoduck/lazy_plugins/vimtex.lua index 4d901cc..e779580 100644 --- a/lua/technoduck/lazy_plugins/vimtex.lua +++ b/lua/technoduck/lazy_plugins/vimtex.lua @@ -4,4 +4,7 @@ return { vim.g.vimtex_view_method = 'zathura' vim.conceallevel="0" vim.g.tex_conceal="0" + vim.g.vimtex_quickfix_ignore_filters = { + 'Package inputenc Warning', + } end } diff --git a/lua/technoduck/remap.lua b/lua/technoduck/remap.lua index 8794a88..0b2c462 100644 --- a/lua/technoduck/remap.lua +++ b/lua/technoduck/remap.lua @@ -24,6 +24,8 @@ vim.keymap.set("n", "j", "lprevzz") vim.keymap.set("n","x","!chmod +x %", {silent = true}) +vim.keymap.set("n","",":setlocal spell!") + --local ls = require('luasnip') --vim.keymap.set({"i"}, "", function() ls.expand() end, {silent = true}) --vim.keymap.set({"i", "s"}, "", function() ls.jump( 1) end, {silent = true})