diff --git a/lua/data/types.lua b/lua/data/types.lua index 26ed2a9..8f4870c 100644 --- a/lua/data/types.lua +++ b/lua/data/types.lua @@ -237,6 +237,7 @@ M.general = { ft = { 'help', 'dashboard', + 'snacks_dashboard', 'neorg', }, } @@ -1838,6 +1839,7 @@ M.treesitter = { 'jsdoc', 'json', 'jsonc', + 'latex', 'lua', 'luadoc', 'luap', @@ -1910,21 +1912,22 @@ M.zen = { wezterm = { enabled = require('data.func').is_wezterm(), -- can be either an absolute font size or the number of incremental steps - font = '+1', -- (10% increase per step) + font = '+2', -- (10% increase per step) }, neovide = { enabled = require('data.func').is_neovide(), -- Will multiply the current scale factor by this number scale = 1.2, -- disable the Neovide animations while in Zen mode - disable_animations = { - neovide_animation_length = 0, - neovide_cursor_animate_command_line = false, - neovide_scroll_animation_length = 0, - neovide_position_animation_length = 0, - neovide_cursor_animation_length = 0, - neovide_cursor_vfx_mode = '', - }, + disable_animations = false, + -- disable_animations = { + -- neovide_animation_length = 0, + -- neovide_cursor_animate_command_line = false, + -- neovide_scroll_animation_length = 0, + -- neovide_position_animation_length = 0, + -- neovide_cursor_animation_length = 0, + -- neovide_cursor_vfx_mode = '', + -- }, }, }, } diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index e23af91..5c104fd 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -39,6 +39,7 @@ return { library = { { path = 'luvit-meta/library', words = { 'vim%.uv' } }, { path = 'LazyVim', words = { 'LazyVim' } }, + { path = 'snacks.nvim', words = { 'Snacks' } }, { path = 'lazy.nvim', words = { 'LazyVim' } }, -- Load the wezterm types when the `wezterm` module is required -- Needs `justinsgithub/wezterm-types` to be installed