diff --git a/init.lua b/init.lua index dec3d8e8..b0df1369 100644 --- a/init.lua +++ b/init.lua @@ -93,6 +93,14 @@ vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal vim.g.have_nerd_font = false +-- Neovide configuration +if vim.g.neovide then + vim.g.neovide_cursor_animation_length = 0 + vim.g.neovide_cursor_trail_size = 0 + vim.g.neovide_scroll_animation_length = 0 + vim.g.neovide_position_animation_length = 0 +end + -- [[ Setting options ]] -- See `:help vim.o` -- NOTE: You can change these options as you wish! @@ -763,7 +771,7 @@ require('lazy').setup({ -- : Toggle signature help -- -- See :h blink-cmp-config-keymap for defining your own keymap - preset = 'default', + preset = 'super-tab', -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see: -- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 5319ba5f..2c1f50f1 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -18,8 +18,8 @@ return { version = '*', opts = { open_mapping = [[]], - direction = 'horizontal', - size = 15, + direction = 'vertical', + size = 80, }, }, }