Remove mind.nvim
This commit is contained in:
parent
47cd7e1879
commit
1916593095
17
README.md
17
README.md
|
@ -88,6 +88,9 @@ Here's some things you might want to check out:
|
||||||
- [Starship](https://starship.rs/) — shell prompt
|
- [Starship](https://starship.rs/) — shell prompt
|
||||||
- [Ranger](https://github.com/ranger/ranger) — file manager
|
- [Ranger](https://github.com/ranger/ranger) — file manager
|
||||||
- [GPG](https://gnupg.org/) + [pass](https://www.passwordstore.org/)
|
- [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
|
### Services
|
||||||
|
|
||||||
|
@ -95,15 +98,17 @@ Here's some things you might want to check out:
|
||||||
|
|
||||||
## Hall of fame
|
## 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
|
- [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
|
- [Polybar](https://github.com/polybar/polybar) — desktop bar
|
||||||
- [Rofi](https://github.com/davatorium/rofi) — program launcher
|
- [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
|
- [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
|
- [Chrome](https://www.google.com/chrome/) — web browser. I switched to `firefox` because it offers a better HM module.
|
||||||
|
|
||||||
## Future
|
## Future
|
||||||
|
|
||||||
|
|
|
@ -137,7 +137,10 @@ local abolishAbbreviations = {
|
||||||
|
|
||||||
-- Linear systems
|
-- Linear systems
|
||||||
-- Note: we must add the space inside the {} in order for capitalization to work!
|
-- 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:
|
-- Graph theory function syntax:
|
||||||
-- gt[function]{graph}{modifier}
|
-- gt[function]{graph}{modifier}
|
||||||
|
@ -225,7 +228,6 @@ local abolishAbbreviations = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
local expanded = scrap.expand_many(abolishAbbreviations)
|
local expanded = scrap.expand_many(abolishAbbreviations)
|
||||||
|
|
||||||
-- Last I checked this contained 1166 abbreviations
|
-- Last I checked this contained 1166 abbreviations
|
||||||
|
|
|
@ -11,7 +11,7 @@ function M.config()
|
||||||
local any = require("formatter.filetypes.any")
|
local any = require("formatter.filetypes.any")
|
||||||
local formatters = {
|
local formatters = {
|
||||||
markdown = {
|
markdown = {
|
||||||
require("formatter.filetypes.markdown").prettierd,
|
require("formatter.filetypes.markdown").prettier,
|
||||||
},
|
},
|
||||||
lua = {
|
lua = {
|
||||||
require("formatter.filetypes.lua").stylua,
|
require("formatter.filetypes.lua").stylua,
|
||||||
|
|
|
@ -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
|
|
Loading…
Reference in a new issue