Added DBUI, noice, zen-mode and comments. Changed Tokyonight.lua to theme.lua
This commit is contained in:
@ -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({
|
||||
|
9
lua/barink/plugins/comments.lua
Normal file
9
lua/barink/plugins/comments.lua
Normal file
@ -0,0 +1,9 @@
|
||||
return {
|
||||
'numToStr/Comment.nvim',
|
||||
lazy = false,
|
||||
opts = {
|
||||
},
|
||||
config = function()
|
||||
require("Comment").setup()
|
||||
end
|
||||
}
|
16
lua/barink/plugins/dadbod-ui.lua
Normal file
16
lua/barink/plugins/dadbod-ui.lua
Normal 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
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
return {
|
||||
"j-hui/fidget.nvim",
|
||||
opts = {
|
||||
notification = {
|
||||
window = { winblend = 0},
|
||||
},
|
||||
},
|
||||
}
|
14
lua/barink/plugins/git-worktree.lua
Normal file
14
lua/barink/plugins/git-worktree.lua
Normal 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
|
||||
}
|
||||
}
|
||||
|
@ -106,6 +106,7 @@ return
|
||||
local language_server = {
|
||||
asm_lsp= true,
|
||||
zls = true,
|
||||
emmet_language_server = true,
|
||||
rust_analyzer = true,
|
||||
jdtls = true,
|
||||
pylsp = true,
|
||||
|
11
lua/barink/plugins/noice.lua
Normal file
11
lua/barink/plugins/noice.lua
Normal file
@ -0,0 +1,11 @@
|
||||
return {
|
||||
"folke/noice.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
},
|
||||
dependencies = {
|
||||
"MunifTanjim/nui.nvim",
|
||||
"rcarriga/nvim-notify",
|
||||
},
|
||||
|
||||
}
|
@ -24,7 +24,7 @@ return {
|
||||
priority=1000,
|
||||
config = function ()
|
||||
require("catppuccin").setup()
|
||||
vim.cmd ('colorscheme catppuccin-mocha')
|
||||
vim.cmd.colorscheme('catppuccin')
|
||||
end
|
||||
}
|
||||
}
|
||||
}
|
6
lua/barink/plugins/twilight.lua
Normal file
6
lua/barink/plugins/twilight.lua
Normal file
@ -0,0 +1,6 @@
|
||||
return {
|
||||
{
|
||||
"folke/twilight.nvim",
|
||||
opts = {}
|
||||
}
|
||||
}
|
3
lua/barink/plugins/vim-dadbod.lua
Normal file
3
lua/barink/plugins/vim-dadbod.lua
Normal file
@ -0,0 +1,3 @@
|
||||
return {
|
||||
"tpope/vim-dadbod",
|
||||
}
|
4
lua/barink/plugins/zen-mode.lua
Normal file
4
lua/barink/plugins/zen-mode.lua
Normal file
@ -0,0 +1,4 @@
|
||||
return {
|
||||
"folke/zen-mode.nvim",
|
||||
opts = {}
|
||||
}
|
Reference in New Issue
Block a user