chore(nvim): noice.nvim and hardtime.nvim changes

This commit is contained in:
Afonso Franco 2024-11-15 17:22:23 +00:00
parent 91d6545120
commit b756a9f221
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
3 changed files with 24 additions and 8 deletions

View file

@ -19,6 +19,17 @@ return {
save_in_cmdline_history = false,
}
},
{
"ThePrimeagen/refactoring.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
lazy = false,
config = function()
require("refactoring").setup()
end,
},
{
"williamboman/mason.nvim",
event = "VeryLazy",
@ -287,11 +298,15 @@ return {
config = function()
if vim.loop.os_uname().sysname == "Darwin" then
vim.g.vimtex_view_method = 'skim'
vim.g.vimtex_view_skim_sync = 1
vim.g.vimtex_view_skim_activate = 1
else
vim.g.vimtex_view_method = 'zathura'
end
vim.g.vimtex_compiler_method = 'generic'
vim.g.vimtex_compiler_generic = { command = 'ls *.tex | entr -n -c tectonic /_ --synctex --keep-logs' }
vim.g.vimtex_compiler_method = 'latexmk'
vim.g.vimtex_view_automatic = 0
-- vim.g.vimtex_compiler_generic = { command =
-- 'ls *.tex | entr -n -c tectonic /_ --synctex --keep-intermediates --reruns 0' }
end,
},
{