diff --git a/de/home/.config/sway-de-utils/config.toml b/de/home/.config/sway-de-utils/config.toml index 8f26770..d3e49e9 100644 --- a/de/home/.config/sway-de-utils/config.toml +++ b/de/home/.config/sway-de-utils/config.toml @@ -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" diff --git a/default/home/.config/nvim/lazyvim.json b/default/home/.config/nvim/lazyvim.json index d8bcaf6..5fb0811 100644 --- a/default/home/.config/nvim/lazyvim.json +++ b/default/home/.config/nvim/lazyvim.json @@ -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": { diff --git a/default/home/.config/nvim/lua/config/lazy.lua b/default/home/.config/nvim/lua/config/lazy.lua index 9eeccfe..7cabd1b 100644 --- a/default/home/.config/nvim/lua/config/lazy.lua +++ b/default/home/.config/nvim/lua/config/lazy.lua @@ -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 diff --git a/default/home/.config/nvim/lua/plugins/edgy.lua b/default/home/.config/nvim/lua/plugins/edgy.lua new file mode 100644 index 0000000..c4e1d55 --- /dev/null +++ b/default/home/.config/nvim/lua/plugins/edgy.lua @@ -0,0 +1,8 @@ +return { + "folke/edgy.nvim", + event = "VeryLazy", + opts = { + laststatus = 3, + splitkeep = "screen", + }, +}