aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2023-03-21 20:43:34 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2023-03-21 20:43:34 +0000
commitf8f6e1566e539b42d70380c02ea18a61fa4f41e9 (patch)
tree53ebe470bc34fb46082744618bb70ace650204c9 /.config/nvim/lua/plugins.lua
parent1edbf138199402af0ae8b0953558ce0e689f61b2 (diff)
downloaddotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.tar
dotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.tar.gz
dotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.tar.bz2
dotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.tar.lz
dotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.tar.xz
dotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.tar.zst
dotfiles-f8f6e1566e539b42d70380c02ea18a61fa4f41e9.zip
Add light theme to neovim and tmux clipboard on
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({})