1
0

Added DBUI, noice, zen-mode and comments. Changed Tokyonight.lua to theme.lua

This commit is contained in:
2024-09-27 21:08:13 +02:00
parent 6825883350
commit 98dd2510c9
12 changed files with 76 additions and 13 deletions

View File

@ -1,6 +1,5 @@
require("barink.vim")
require("barink.keys")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({

View File

@ -0,0 +1,9 @@
return {
'numToStr/Comment.nvim',
lazy = false,
opts = {
},
config = function()
require("Comment").setup()
end
}

View File

@ -0,0 +1,16 @@
return {
"kristijanhusak/vim-dadbod-ui",
dependencies = {
{'tpope/vim-dadbod', lazy = true },
{ 'kristijanhusak/vim-dadbod-completion', ft = { 'sql', 'mysql', 'plsql'}, lazy = true },
},
cmd = {
'DBUI',
'DBUIToggle',
'DBUIAddConnection',
'DBUIFindBuffer',
},
init = function ()
vim.g.db_ui_use_nerd_fonts = 1
end
}

View File

@ -1,8 +0,0 @@
return {
"j-hui/fidget.nvim",
opts = {
notification = {
window = { winblend = 0},
},
},
}

View File

@ -0,0 +1,14 @@
return {
{
'ThePrimeagen/git-worktree.nvim',
dependencies = {
'nvim-telescope/telescope.nvim',
},
opts = {},
init = function ()
require("git-worktree").setup()
require("telescope").load_extension("git_worktree")
end
}
}

View File

@ -106,6 +106,7 @@ return
local language_server = {
asm_lsp= true,
zls = true,
emmet_language_server = true,
rust_analyzer = true,
jdtls = true,
pylsp = true,

View File

@ -0,0 +1,11 @@
return {
"folke/noice.nvim",
event = "VeryLazy",
opts = {
},
dependencies = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
},
}

View File

@ -24,7 +24,7 @@ return {
priority=1000,
config = function ()
require("catppuccin").setup()
vim.cmd ('colorscheme catppuccin-mocha')
vim.cmd.colorscheme('catppuccin')
end
}
}
}

View File

@ -0,0 +1,6 @@
return {
{
"folke/twilight.nvim",
opts = {}
}
}

View File

@ -0,0 +1,3 @@
return {
"tpope/vim-dadbod",
}

View File

@ -0,0 +1,4 @@
return {
"folke/zen-mode.nvim",
opts = {}
}