Updated settings

This commit is contained in:
saberzero1 2023-12-09 20:18:01 +01:00
parent 29fe5b884b
commit 3981077449
4 changed files with 77 additions and 3 deletions

View file

@ -21,6 +21,11 @@ Kickstart.nvim is a template for your own configuration.
And then you can explore or search through `:help lua-guide`
- https://neovim.io/doc/user/lua-guide.html
-- nvim-tree.lua
-- disable netrw at the very start of your init.lua
-- vim.g.loaded_netrw = 1
-- vim.g.loaded_netrwPlugin = 1
Kickstart Guide:
@ -197,6 +202,31 @@ require('lazy').setup({
end,
},
{
'nvim-tree/nvim-tree.lua',
version = '*',
lazy = false,
dependencies = {
'nvim-tree/nvim-web-devicons',
},
config = function()
require('nvim-tree').setup({
sort = {
sorter = 'case_sensitive',
},
view = {
width = 30,
},
renderer = {
group_empty = true,
},
filters = {
dotfiles = true,
},
})
end,
},
{
-- Set lualine as statusline
'nvim-lualine/lualine.nvim',
@ -257,8 +287,8 @@ require('lazy').setup({
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them.
-- require 'kickstart.plugins.autoformat',
-- require 'kickstart.plugins.debug',
require 'kickstart.plugins.autoformat',
require 'kickstart.plugins.debug',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping
@ -266,7 +296,7 @@ require('lazy').setup({
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
--
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
}, {})
-- [[ Setting options ]]