diff options
Diffstat (limited to '.config/nvim/lua')
-rw-r--r-- | .config/nvim/lua/plugin_settings.lua | 13 | ||||
-rw-r--r-- | .config/nvim/lua/plugins.lua | 3 |
2 files changed, 6 insertions, 10 deletions
diff --git a/.config/nvim/lua/plugin_settings.lua b/.config/nvim/lua/plugin_settings.lua index 4bc7081..bff9bcb 100644 --- a/.config/nvim/lua/plugin_settings.lua +++ b/.config/nvim/lua/plugin_settings.lua | |||
@@ -242,12 +242,12 @@ require('telescope').load_extension('fzf') | |||
242 | -- }}} telescope -- | 242 | -- }}} telescope -- |
243 | 243 | ||
244 | -- dashboard {{{ -- | 244 | -- dashboard {{{ -- |
245 | g.dashboard_default_executive = 'telescope' | 245 | g.dashboard_default_executive = 'telescope' |
246 | g.dashboard_preview_command = 'cat' | 246 | g.dashboard_preview_command = 'cat' |
247 | g.dashboard_preview_pipeline = 'lolcat' | 247 | g.dashboard_preview_file = '~/.config/nvim/neovim.cat' |
248 | g.dashboard_preview_file = '~/.config/nvim/neovim.cat' | 248 | g.dashboard_preview_file_height = 13 |
249 | g.dashboard_preview_file_height = 14 | 249 | g.dashboard_preview_file_width = 90 |
250 | g.dashboard_preview_file_width = 90 | 250 | g.dashboard_footer_icon = '💃 ' |
251 | 251 | ||
252 | g.dashboard_custom_shortcut = { | 252 | g.dashboard_custom_shortcut = { |
253 | last_session = '<leader> s l', | 253 | last_session = '<leader> s l', |
@@ -304,7 +304,6 @@ cmp.setup({ | |||
304 | { name = 'nvim_lsp' }, | 304 | { name = 'nvim_lsp' }, |
305 | { name = 'ultisnips' }, | 305 | { name = 'ultisnips' }, |
306 | { name = 'buffer' }, | 306 | { name = 'buffer' }, |
307 | { name = "latex_symbols" }, | ||
308 | } | 307 | } |
309 | }) | 308 | }) |
310 | 309 | ||
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 266ab2c..6d982de 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua | |||
@@ -26,7 +26,6 @@ return require('packer').startup(function() | |||
26 | use 'hrsh7th/nvim-cmp' | 26 | use 'hrsh7th/nvim-cmp' |
27 | use 'hrsh7th/cmp-nvim-lsp' | 27 | use 'hrsh7th/cmp-nvim-lsp' |
28 | use 'hrsh7th/cmp-buffer' | 28 | use 'hrsh7th/cmp-buffer' |
29 | use 'kdheepak/cmp-latex-symbols' | ||
30 | use 'quangnguyen30192/cmp-nvim-ultisnips' | 29 | use 'quangnguyen30192/cmp-nvim-ultisnips' |
31 | 30 | ||
32 | -- find, filter, preview, pick | 31 | -- find, filter, preview, pick |
@@ -136,8 +135,6 @@ return require('packer').startup(function() | |||
136 | } | 135 | } |
137 | -- increment dates, times & more | 136 | -- increment dates, times & more |
138 | use 'tpope/vim-speeddating' | 137 | use 'tpope/vim-speeddating' |
139 | -- search, substitute and abbreviate | ||
140 | use 'tpope/vim-abolish' | ||
141 | -- provides ga, show unicode stuff of char under cursor | 138 | -- provides ga, show unicode stuff of char under cursor |
142 | use 'tpope/vim-characterize' | 139 | use 'tpope/vim-characterize' |
143 | -- comment helper | 140 | -- comment helper |