Compare commits
5 Commits
72f2a053c0
...
e08245989a
Author | SHA1 | Date | |
---|---|---|---|
e08245989a | |||
492adae580 | |||
09ffb3b2d9 | |||
a8bf055a0b | |||
a22b7125a5 |
@ -1,3 +1,3 @@
|
||||
import = [
|
||||
"~/.config/alacritty/themes/themes/deep_space.toml"
|
||||
"~/.config/alacritty/themes/themes/nightfly.toml"
|
||||
]
|
||||
|
@ -34,6 +34,10 @@ misc {
|
||||
background_color = 0xff808080
|
||||
}
|
||||
|
||||
binds {
|
||||
workspace_back_and_forth = true
|
||||
}
|
||||
|
||||
$menu = wofi -S run
|
||||
$terminal = alacritty
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" },
|
||||
"LuaSnip": { "branch": "master", "commit": "50fcf17db7c75af80e6b6109acfbfb4504768780" },
|
||||
"arrow.nvim": { "branch": "master", "commit": "0b0191d967d9fd837a850f2ccaa95d5917239404" },
|
||||
"bamboo.nvim": { "branch": "master", "commit": "f10e56db7b0a3312bff2500f7d74c03300b363ed" },
|
||||
"blame.nvim": { "branch": "main", "commit": "dedbcdce857f708c63f261287ac7491a893912d0" },
|
||||
"bookmarks.nvim": { "branch": "main", "commit": "42371a76cdd786452b537490926b1b6a041672e5" },
|
||||
@ -13,9 +14,9 @@
|
||||
"fidget.nvim": { "branch": "main", "commit": "ef99df04a1c53a453602421bc0f756997edc8289" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "700c4a25caacbb4648c9a27972c2fe203948e0c2" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "47c8e3e571376b24de62408fd0c9d12f0a9fc0a3" },
|
||||
"global-note.nvim": { "branch": "main", "commit": "1e0d4bba425d971ed3ce40d182c574a25507115c" },
|
||||
"go.nvim": { "branch": "master", "commit": "fca26b05699ad06c077721823a0b1a8e02539d5c" },
|
||||
"guihua.lua": { "branch": "master", "commit": "225db770e36aae6a1e9e3a65578095c8eb4038d3" },
|
||||
"harpoon": { "branch": "harpoon2", "commit": "0378a6c428a0bed6a2781d459d7943843f374bce" },
|
||||
"hierarchy-tree-go.nvim": { "branch": "main", "commit": "9fab9ddefe81edab4a144824955d2d085db3f49a" },
|
||||
"indent-blankline.nvim": { "branch": "master", "commit": "d98f537c3492e87b6dc6c2e3f66ac517528f406f" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "4c6479e98ad643cd584e9e7c4095c463e0d810eb" },
|
||||
|
@ -1,4 +1,4 @@
|
||||
local function termnalbg()
|
||||
local function terminalbg()
|
||||
local ok, lines = pcall(io.lines, os.getenv('HOME') .. '/.config/alacritty/alacritty.toml')
|
||||
if ok then
|
||||
for line in lines do
|
||||
@ -11,8 +11,8 @@ local function termnalbg()
|
||||
end
|
||||
|
||||
return {
|
||||
-- Colorscheme
|
||||
{
|
||||
-- Colorscheme
|
||||
'ribru17/bamboo.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
@ -21,7 +21,7 @@ return {
|
||||
-- optional configuration here
|
||||
}
|
||||
require('bamboo').load()
|
||||
vim.o.background = termnalbg()
|
||||
vim.o.background = terminalbg()
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
10
nvim/.config/nvim/lua/plugins/arrow.lua
Normal file
10
nvim/.config/nvim/lua/plugins/arrow.lua
Normal file
@ -0,0 +1,10 @@
|
||||
return {
|
||||
{
|
||||
"otavioschwanck/arrow.nvim",
|
||||
opts = {
|
||||
show_icons = true,
|
||||
leader_key = '<leader>;',
|
||||
buffer_leader_key = '<leader>m',
|
||||
}
|
||||
}
|
||||
}
|
12
nvim/.config/nvim/lua/plugins/global-note.lua
Normal file
12
nvim/.config/nvim/lua/plugins/global-note.lua
Normal file
@ -0,0 +1,12 @@
|
||||
return {
|
||||
'backdround/global-note.nvim',
|
||||
keys = {
|
||||
{
|
||||
"<leader>n",
|
||||
function()
|
||||
require('global-note').toggle_note()
|
||||
end,
|
||||
desc = 'Toggle global [N]ote',
|
||||
},
|
||||
},
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
return {
|
||||
{
|
||||
'ThePrimeagen/harpoon',
|
||||
branch = 'harpoon2',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
config = function()
|
||||
local harpoon = require "harpoon"
|
||||
harpoon:setup()
|
||||
vim.keymap.set('n', '<leader>i', function() harpoon:list():add() end, { desc = "Harpoon add new [I]tem" })
|
||||
vim.keymap.set('n', '<leader>m', function() harpoon.ui:toggle_quick_menu(harpoon:list()) end,
|
||||
{ desc = "Harpoon [M]enu" })
|
||||
vim.keymap.set('n', '<leader>1', function() harpoon:list():select(1) end)
|
||||
vim.keymap.set('n', '<leader>2', function() harpoon:list():select(2) end)
|
||||
vim.keymap.set('n', '<leader>3', function() harpoon:list():select(3) end)
|
||||
vim.keymap.set('n', '<leader>4', function() harpoon:list():select(4) end)
|
||||
vim.keymap.set('n', '<leader>5', function() harpoon:list():prev() end)
|
||||
vim.keymap.set('n', '<leader>6', function() harpoon:list():next() end)
|
||||
end
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user