aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r--.config/nvim/lua/plugins.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index b34398c..101eaa5 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -4,6 +4,7 @@ local PKGS = {
-- Common
{ url = "https://github.com/kyazdani42/nvim-web-devicons.git" };
+ { url = "https://github.com/ojroques/nvim-osc52.git" };
{ url = "https://github.com/kyazdani42/nvim-tree.lua.git" };
{ url = "https://github.com/nvim-telescope/telescope.nvim.git" };
@@ -15,6 +16,7 @@ local PKGS = {
{ url = "https://github.com/tpope/vim-abolish.git" };
{ url = "https://github.com/mg979/vim-visual-multi.git" };
{ url = "https://github.com/echasnovski/mini.nvim.git" };
+ { url = "https://github.com/catppuccin/nvim.git" };
-- Status line
{ url = "https://github.com/akinsho/bufferline.nvim.git" };
@@ -33,6 +35,7 @@ local PKGS = {
{ url = "https://github.com/sainnhe/sonokai.git" };
{ url = "https://github.com/navarasu/onedark.nvim.git" };
{ url = "https://github.com/Mofiqul/adwaita.nvim.git" };
+ { url = "https://github.com/projekt0n/github-nvim-theme.git" };
-- LCOV Coverage
{ url = "https://github.com/google/vim-coverage.git" };
@@ -146,11 +149,23 @@ local function init_plugins()
end;
});
+ require("catppuccin").setup({
+ transparent_background = true,
+ show_end_of_line = true,
+ term_colors = true,
+ })
+
vim.o.foldcolumn = "1"
vim.o.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
vim.o.foldlevelstart = 99
vim.o.foldenable = true
+ require('osc52').setup {
+ max_length = 0, -- Maximum length of selection (0 for no limit)
+ silent = false, -- Disable message on successful copy
+ trim = false, -- Trim surrounding whitespaces before copy
+ }
+
require("devcontainer").setup({})
require("which-key").setup({})