added bunch of configs

This commit is contained in:
manobann 2023-04-17 21:13:37 +02:00
parent 9924f7e0a0
commit 0a4a1a83e4
3 changed files with 325 additions and 7 deletions

View file

@ -0,0 +1,15 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}

View file

@ -1,5 +1,9 @@
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
vim.cmd [[au VimEnter,VimResume * set guicursor=n-v-c:block,i-ci-ve:ver25,r-cr:hor20,o:hor50
\,a:blinkon0-blinkon0-blinkon0-Cursor/lCursor
\,sm:block-blinkon0-blinkon0-blinkon0
au VimLeave,VimSuspend * set guicursor=a:hor50-blinkon0]]
-- See the kickstart.nvim README for more information
return {}