1
Fork 0

Remove mind.nvim

This commit is contained in:
Matei Adriel 2023-09-10 18:20:36 +03:00
parent 47cd7e1879
commit 1916593095
No known key found for this signature in database
4 changed files with 16 additions and 38 deletions

View file

@ -88,6 +88,9 @@ Here's some things you might want to check out:
- [Starship](https://starship.rs/) — shell prompt
- [Ranger](https://github.com/ranger/ranger) — file manager
- [GPG](https://gnupg.org/) + [pass](https://www.passwordstore.org/)
- Self management:
- [Smos](https://github.com/NorfairKing/smos) — A comprehensive self-management System.
- [Intray](https://github.com/NorfairKing/intray) — GTD capture tool.
### Services
@ -95,15 +98,17 @@ Here's some things you might want to check out:
## Hall of fame
Includes links to stuff which used to be in the previous section but is not used anymore. Only created this section in June 2023, so stuff I used earlier might not be here.
Includes links to stuff which used to be in the previous section but is not used anymore. Only created this section in June 2023, so stuff I used earlier might not be here. Sorted with the most recently dropped things at the top.
- [Wofi](https://sr.ht/~scoopta/wofi/) — program launcher
- [Mind.nvim](https://github.com/phaazon/mind.nvim) — self management tree editor. The project got archived, so I switched to [Smos](https://github.com/NorfairKing/smos).
- [Null-ls](https://github.com/jose-elias-alvarez/null-ls.nvim) — general purpose neovim LSP. The project got archived, so I switched to [formatter.nvim](https://github.com/mhartington/formatter.nvim).
- [Wofi](https://sr.ht/~scoopta/wofi/) — program launcher. I switched to [Anyrun](https://github.com/Kirottu/anyrun).
- [Alacritty](https://github.com/alacritty/alacritty) — terminal emulator
- [Xmonad](https://xmonad.org/) — xorg window manager
- [Xmonad](https://xmonad.org/) — xorg window manager. I switched to [Hyprland](https://hyprland.org/).
- [Polybar](https://github.com/polybar/polybar) — desktop bar
- [Rofi](https://github.com/davatorium/rofi) — program launcher
- [Spectacle](https://apps.kde.org/spectacle/) — screenshot tool
- [Chrome](https://www.google.com/chrome/) — web browser
- [Rofi](https://github.com/davatorium/rofi) — program launcher. I switched to [Wofi](https://sr.ht/~scoopta/wofi/).
- [Spectacle](https://apps.kde.org/spectacle/) — screenshot tool. I switched to [Grimblast](https://github.com/hyprwm/contrib/tree/main/grimblast).
- [Chrome](https://www.google.com/chrome/) — web browser. I switched to `firefox` because it offers a better HM module.
## Future

View file

@ -137,7 +137,10 @@ local abolishAbbreviations = {
-- Linear systems
-- Note: we must add the space inside the {} in order for capitalization to work!
{ "{{s,o,l},}deq{s,}", "{{scalar,ordinary,linear} ,}differential equation{}" },
{
"{{s,o,l},}deq{s,}",
"{{scalar,ordinary,linear} ,}differential equation{}",
},
-- Graph theory function syntax:
-- gt[function]{graph}{modifier}
@ -225,7 +228,6 @@ local abolishAbbreviations = {
},
}
local expanded = scrap.expand_many(abolishAbbreviations)
-- Last I checked this contained 1166 abbreviations

View file

@ -11,7 +11,7 @@ function M.config()
local any = require("formatter.filetypes.any")
local formatters = {
markdown = {
require("formatter.filetypes.markdown").prettierd,
require("formatter.filetypes.markdown").prettier,
},
lua = {
require("formatter.filetypes.lua").stylua,

View file

@ -1,29 +0,0 @@
local M = {
"phaazon/mind.nvim", -- Organize shit as trees
cmd = "MindOpenMain",
}
function M.init()
vim.keymap.set(
"n",
"<leader>m",
"<cmd>MindOpenMain<cr>",
{ desc = "[M]ind panel" }
)
end
function M.config()
local mind = require("mind")
mind.setup({
persistence = {
state_path = "~/Projects/Mind/mind.json",
data_dir = "~/Mind/data",
},
ui = {
width = 50,
},
})
end
return M