New backup 2026-03-02 12:30:16
This commit is contained in:
parent
80d654e787
commit
bfb962d9fe
4 changed files with 20 additions and 5 deletions
|
|
@ -96,10 +96,6 @@ suspend_cmd = ["systemctl", "suspend"]
|
|||
name = "server-hp-y2z63av"
|
||||
icon = ""
|
||||
command = "ssh-agent-handler.sh pogmom@server-hp-y2z63av "
|
||||
#[[profiles.scripts]]
|
||||
# name = "server-asus-n705fd"
|
||||
# icon = ""
|
||||
# command = "ssh-agent-handler.sh server-asus-n705fd "
|
||||
|
||||
[[profiles]]
|
||||
name = "Housing"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"extras": [
|
||||
|
||||
"lazyvim.plugins.extras.editor.neo-tree",
|
||||
"lazyvim.plugins.extras.lang.markdown",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.toml",
|
||||
"lazyvim.plugins.extras.ui.edgy"
|
||||
],
|
||||
"install_version": 8,
|
||||
"news": {
|
||||
|
|
|
|||
|
|
@ -16,6 +16,13 @@ vim.opt.rtp:prepend(lazypath)
|
|||
vim.g.seoul256_disable_background = true
|
||||
--require("seoul256")
|
||||
|
||||
vim.cmd([[
|
||||
augroup NEOTREE_AUGROUP
|
||||
autocmd!
|
||||
au VimEnter * lua vim.defer_fn(function() vim.cmd("Neotree show left") end, 10)
|
||||
augroup END
|
||||
]])
|
||||
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
-- add LazyVim and import its plugins
|
||||
|
|
|
|||
8
default/home/.config/nvim/lua/plugins/edgy.lua
Normal file
8
default/home/.config/nvim/lua/plugins/edgy.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"folke/edgy.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
laststatus = 3,
|
||||
splitkeep = "screen",
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue