#type/ref/video #a/status/done/finished
[Open](https://youtube.com/watch?v=u6EKq6z0CRU&si=zgUyeHdqs3I6Vwtg)
Title:: Neovim Workflow and Fuzzy Searching Code // \#ATalkToRemember w/ Thorsten Ball
Authors:: [[TJ DeVries]]
Published:: 2021-03-06
Description:: Super [[High value content|high value video]] with [[TJ DeVries]] explaining a bunch of his more interesting [[Neovim|nvim]] setup to a friend.
Date added:: [[2023-08-30]]
## Notes
- use [[Telescope (nvim)]] to directly search in certain predefined directories
- Similar to my searching in ~/g/dev
- But he changes the cwd as well
- can also open new tab and tcd to change wdir only in that tab
- can also switch to a different tmux session and open it there.
- Interesting to me is that he seems to be doing a lot of things from a single nvim session
- I really like my tmux setup, but it’s interesting to see how much you can accomplish without ever leaving Neovim
- Helper functions
- function P(x)
- vim.inspect(x)
- return x
- end
- if (P(x).something == “something”) then
- function RELOAD(x)
- ?.setloaded(x, false)
- return require(x)
- end
-