updated plugins
This commit is contained in:
16
init.lua
16
init.lua
@@ -15,28 +15,25 @@ require("lazy").setup({
|
|||||||
-- import your plugins
|
-- import your plugins
|
||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
{
|
{
|
||||||
'soywod/iris.vim', -- unsure
|
|
||||||
'tpope/vim-commentary', -- commenting lines with shortcut
|
'tpope/vim-commentary', -- commenting lines with shortcut
|
||||||
'vimpostor/vim-tpipeline', -- integrate with tmux status-line
|
-- 'vimpostor/vim-tpipeline', -- integrate with tmux status-line
|
||||||
'kshenoy/vim-signature', -- tag lines
|
'kshenoy/vim-signature', -- tag lines
|
||||||
'mg979/vim-visual-multi', -- work on multiple lines at once
|
'mg979/vim-visual-multi', -- work on multiple lines at once
|
||||||
'obsidian-nvim/obsidian.nvim', -- work with obsidian
|
'obsidian-nvim/obsidian.nvim', -- Obsidian lsp plugin
|
||||||
'nvim-tree/nvim-web-devicons', -- nerdfont!
|
'nvim-tree/nvim-web-devicons', -- nerdfont!
|
||||||
'nvim-lualine/lualine.nvim', -- lualine
|
'nvim-lualine/lualine.nvim', -- lualine
|
||||||
'TamaMcGlinn/vim-termhere', --simple terminal QOL
|
'TamaMcGlinn/vim-termhere', --simple terminal QOL
|
||||||
"smjonas/inc-rename.nvim",
|
"smjonas/inc-rename.nvim", --lsp plugin for renaming variable
|
||||||
'basola21/PDFview',
|
'basola21/PDFview', -- rendering pdfs in nvim
|
||||||
"rktjmp/lush.nvim", -- better theme editing
|
"rktjmp/lush.nvim", -- better theme editing
|
||||||
'vyfor/cord.nvim', --discord rich presence
|
'vyfor/cord.nvim', --discord rich presence
|
||||||
'RRethy/base16-nvim',
|
|
||||||
{ 'norcalli/nvim-colorizer.lua', config = function() require('colorizer').setup{"*"} end,}, -- preview colors
|
{ 'norcalli/nvim-colorizer.lua', config = function() require('colorizer').setup{"*"} end,}, -- preview colors
|
||||||
{'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically
|
{'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically
|
||||||
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer
|
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer
|
||||||
{ "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart
|
{ "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart
|
||||||
{'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands
|
{'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands
|
||||||
{ 'nvim-java/nvim-java', config = function() require('java').setup() vim.lsp.enable('jdtls') end, },
|
{ 'nvim-java/nvim-java', config = function() require('java').setup() vim.lsp.enable('jdtls') end, }, --jave QOL
|
||||||
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
|
{ 'RRethy/base16-nvim', config = function() require('matugen').setup() end,}, --colorshceme for noctalia integration
|
||||||
{ 'RRethy/base16-nvim', config = function() require('matugen').setup() end,},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- Configure any other settings here. See the documentation for more details.
|
-- Configure any other settings here. See the documentation for more details.
|
||||||
@@ -51,4 +48,3 @@ if theme_ok then
|
|||||||
matugen.setup()
|
matugen.setup()
|
||||||
end
|
end
|
||||||
|
|
||||||
require('autocommands')
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
-- [[dynamicallt change kitty window opacity when opening and closing]]
|
-- [[dynamically change kitty window opacity when opening and closing]]
|
||||||
-- Define the target opacities
|
-- Define the target opacities
|
||||||
local nvim_opacity = "0.85"
|
local nvim_opacity = "0.85"
|
||||||
local default_opacity = "0.6"
|
local default_opacity = "0.6"
|
||||||
|
|||||||
@@ -55,3 +55,7 @@ vim.o.confirm = true
|
|||||||
|
|
||||||
vim.opt.termguicolors = true -- required for colorizer
|
vim.opt.termguicolors = true -- required for colorizer
|
||||||
|
|
||||||
|
--set background color on entering and leaving nvim
|
||||||
|
require('autocommands')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user