mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 13:58:00 +00:00
[neovim] Minor changes
This commit is contained in:
parent
5b26ee227f
commit
ef96d82bc3
@ -35,4 +35,3 @@ vim.api.nvim_create_autocmd({ "BufWinEnter" }, {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -45,4 +45,3 @@ vim.opt.linebreak = true
|
|||||||
|
|
||||||
-- experimental
|
-- experimental
|
||||||
vim.opt.cmdheight = 0 -- Number of screen lines to use for the command-line
|
vim.opt.cmdheight = 0 -- Number of screen lines to use for the command-line
|
||||||
|
|
||||||
|
@ -18,6 +18,12 @@ if not status_ok then
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local lazy_opts = {
|
||||||
|
ui = {
|
||||||
|
border = "rounded",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
lazy.setup({
|
lazy.setup({
|
||||||
-- Colorschemes
|
-- Colorschemes
|
||||||
{
|
{
|
||||||
@ -46,7 +52,7 @@ lazy.setup({
|
|||||||
{ "akinsho/bufferline.nvim", version = "v3.*" },
|
{ "akinsho/bufferline.nvim", version = "v3.*" },
|
||||||
{ "moll/vim-bbye" },
|
{ "moll/vim-bbye" },
|
||||||
{ "nvim-lualine/lualine.nvim" },
|
{ "nvim-lualine/lualine.nvim" },
|
||||||
{ "lewis6991/impatient.nvim" },
|
{ "lewis6991/impatient.nvim", lazy = false, priority = 1000 },
|
||||||
{ "lukas-reineke/indent-blankline.nvim", version = "v2.*" },
|
{ "lukas-reineke/indent-blankline.nvim", version = "v2.*" },
|
||||||
{ "nvim-zh/auto-save.nvim" },
|
{ "nvim-zh/auto-save.nvim" },
|
||||||
{ "gelguy/wilder.nvim" },
|
{ "gelguy/wilder.nvim" },
|
||||||
@ -57,7 +63,7 @@ lazy.setup({
|
|||||||
{ "ray-x/sad.nvim" },
|
{ "ray-x/sad.nvim" },
|
||||||
{
|
{
|
||||||
"nvim-neo-tree/neo-tree.nvim",
|
"nvim-neo-tree/neo-tree.nvim",
|
||||||
branch = "v2.x",
|
version = "v2.x",
|
||||||
dependencies = { "MunifTanjim/nui.nvim" },
|
dependencies = { "MunifTanjim/nui.nvim" },
|
||||||
},
|
},
|
||||||
{ "taybart/b64.nvim" },
|
{ "taybart/b64.nvim" },
|
||||||
@ -125,4 +131,4 @@ lazy.setup({
|
|||||||
end,
|
end,
|
||||||
ft = { "markdown" },
|
ft = { "markdown" },
|
||||||
},
|
},
|
||||||
})
|
}, lazy_opts)
|
||||||
|
Loading…
Reference in New Issue
Block a user