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