first personalization

This commit is contained in:
Florian Feigl 2024-01-12 21:22:07 +01:00
parent 2510c29d62
commit 28778716da
6 changed files with 38 additions and 130 deletions

View file

@ -1,5 +0,0 @@
-- 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 :)
--
-- See the kickstart.nvim README for more information
return {}

View file

@ -0,0 +1,16 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
"3rd/image.nvim",
},
keys = {
{ "<leader>ft", "<cmd>Neotree reveal left<cr>", desc = "NeoTree" },
-- config = function()
-- require("neo-tree").setup()
-- end,
}
}

View file

@ -0,0 +1,6 @@
return {
vim.cmd("set expandtab"),
vim.cmd("set tabstop=2"),
vim.cmd("set softtabstop=2"),
vim.cmd("set shiftwidth=2"),
}