add more plugins and change theme
parent
b292e2a418
commit
2222eb9b35
@ -0,0 +1,6 @@
|
||||
-- Tab is 2 spaces.
|
||||
vim.o.tabstop = 2
|
||||
vim.o.shiftwidth = 2
|
||||
|
||||
-- Line numbers are relative to current line.
|
||||
vim.o.relativenumber = true
|
@ -0,0 +1,12 @@
|
||||
return {
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
version = '*',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
'MunifTanjim/nui.nvim',
|
||||
},
|
||||
config = function ()
|
||||
require('neo-tree').setup {}
|
||||
end
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
return {
|
||||
'catppuccin/nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
end,
|
||||
}
|
||||
|
@ -0,0 +1,4 @@
|
||||
return {
|
||||
'christoomey/vim-tmux-navigator',
|
||||
lazy = false,
|
||||
}
|
Loading…
Reference in New Issue