first personalization
This commit is contained in:
parent
2510c29d62
commit
28778716da
6 changed files with 38 additions and 130 deletions
|
|
@ -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 {}
|
||||
16
lua/custom/plugins/neo-tree.lua
Normal file
16
lua/custom/plugins/neo-tree.lua
Normal 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,
|
||||
}
|
||||
}
|
||||
6
lua/custom/plugins/vim-settings.lua
Normal file
6
lua/custom/plugins/vim-settings.lua
Normal 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"),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue