|
|
|
|
@@ -146,7 +146,7 @@ vim.api.nvim_create_autocmd("LspAttach", {
|
|
|
|
|
-- Install plugins
|
|
|
|
|
vim.pack.add({
|
|
|
|
|
-- Colorscheme
|
|
|
|
|
"https://github.com/habamax/vim-gruvbit",
|
|
|
|
|
"https://github.com/fxn/vim-monochrome",
|
|
|
|
|
|
|
|
|
|
-- Background trasparency
|
|
|
|
|
"https://github.com/xiyaowong/transparent.nvim",
|
|
|
|
|
@@ -167,9 +167,6 @@ vim.pack.add({
|
|
|
|
|
-- Trailing whitespace
|
|
|
|
|
"https://github.com/kaplanz/retrail.nvim",
|
|
|
|
|
|
|
|
|
|
-- Indent blankline
|
|
|
|
|
"https://github.com/lukas-reineke/indent-blankline.nvim",
|
|
|
|
|
|
|
|
|
|
-- File tree
|
|
|
|
|
{ src = "https://github.com/nvim-neo-tree/neo-tree.nvim", version = vim.version.range("3") },
|
|
|
|
|
"https://github.com/nvim-lua/plenary.nvim",
|
|
|
|
|
@@ -189,10 +186,7 @@ vim.cmd.packadd("nvim.difftool")
|
|
|
|
|
|
|
|
|
|
-- [[ PLUGINS CONFIGURATIONS ]] --
|
|
|
|
|
|
|
|
|
|
cmd.colorscheme("gruvbit")
|
|
|
|
|
local bg_color = vim.api.nvim_get_hl(0, {name = "Normal", link = false}).bg
|
|
|
|
|
cmd.highlight(string.format("Float guifg=NONE guibg=#%06x gui=NONE", bg_color))
|
|
|
|
|
cmd.highlight(string.format("NormalFloat guifg=NONE guibg=#%06x gui=NONE", bg_color))
|
|
|
|
|
cmd.colorscheme("monochrome")
|
|
|
|
|
|
|
|
|
|
require("mini.pick").setup()
|
|
|
|
|
|
|
|
|
|
@@ -205,8 +199,6 @@ require("retrail").setup({
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
require("ibl").setup()
|
|
|
|
|
|
|
|
|
|
require("neo-tree").setup({
|
|
|
|
|
window = {
|
|
|
|
|
width = 32
|
|
|
|
|
|