Skip to content

Commit 6650936

Browse files
committed
update radion, fix relative paths in neovim post
1 parent 61fcc0e commit 6650936

2 files changed

Lines changed: 8 additions & 19 deletions

File tree

content/neovim-setup/index.md

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ NVIM_APPNAME=micahkepe/dotfiles/nvim nvim
3939

4040
**If you're interested in the nerdy details of my setup, keep reading!**
4141

42-
{{ gif(sources=["demos/nvdash.mp4"]
42+
{{ gif(sources=["./demos/nvdash.mp4"]
4343
width=80) }}
4444

4545
---
@@ -76,12 +76,8 @@ To install Neovim, check the
7676
[INSTALL.md](https://github.com/neovim/neovim/blob/master/INSTALL.md) file on
7777
the Neovim repository for the instructions for your machine.
7878

79-
<br>
80-
8179
{{ responsive(src="neovim-logo.png", alt="Neovim logo") }}
8280

83-
<br>
84-
8581
## The Setup
8682

8783
First off, a confession. I am not using off the shelf Neovim but starting from
@@ -104,8 +100,6 @@ I particularly like NVChad for the following reasons:
104100
- **Community Support**: NVChad’s [community](https://discord.com/invite/gADmkJb9Fb)
105101
is active, and the configuration gets frequent updates and improvements.
106102

107-
<br>
108-
109103
{{ responsive(src="nvchad-logo.png", alt="NVChad logo", width=40) }}
110104

111105
If you are following along, let's first install NVChad before we continue:
@@ -281,7 +275,7 @@ These plugins work together to provide a fully-featured IDE-like experience
281275
right out of the box. NVChad's setup ensures that these plugins are configured
282276
to work well together, providing a smooth and cohesive editing experience.
283277

284-
{{ gif(sources=["demos/nvchad-demo.mp4"], width=80)}}
278+
{{ gif(sources=["./demos/nvchad-demo.mp4"], width=80)}}
285279

286280
<br>
287281

@@ -292,7 +286,7 @@ NVChad's base.
292286

293287
##### [`gelguy/wilder.nvim`](https://github.com/gelguy/wilder.nvim)
294288

295-
{{ gif(sources=["demos/wilder-cmds.mp4"], width=80)}}
289+
{{ gif(sources=["./demos/wilder-cmds.mp4"], width=80)}}
296290

297291
Makes navigating the Neovim command line much faster with fuzzy search
298292
capabilities, providing instant suggestions as you type commands.
@@ -359,7 +353,7 @@ return {
359353

360354
##### [`3rd/image.nvim`](https://github.com/3rd/image.nvim)
361355

362-
{{ gif(sources=["demos/image-nvim.mp4"], width=80)}}
356+
{{ gif(sources=["./demos/image-nvim.mp4"], width=80)}}
363357

364358
Enables image rendering in Neovim, essential for tasks like markdown previews
365359
and documentation editing. When editing markdown files or any other file format
@@ -500,7 +494,7 @@ return {
500494

501495
##### [`rmagatti/autosession`](https://github.com/rmagatti/auto-session)
502496

503-
{{ gif(sources=["demos/autosession.mp4"], width=80)}}
497+
{{ gif(sources=["./demos/autosession.mp4"], width=80)}}
504498

505499
Automatically saves and restores Neovim sessions, allowing you to pick up your
506500
work right where you left off. If you close Neovim and reopen it later,
@@ -539,7 +533,7 @@ map("n", "<leader>wr", "<cmd>SessionRestore<CR>", { desc = "Restore session for
539533

540534
##### [`christoomey/vim-tmux-navigator`](https://github.com/christoomey/vim-tmux-navigator)
541535

542-
{{ gif(sources=["demos/navigator.mp4"], width=80)}}
536+
{{ gif(sources=["./demos/navigator.mp4"], width=80)}}
543537

544538
Enables smooth navigation between Neovim windows and
545539
[tmux](https://github.com/tmux/tmux/wiki) panes, making it feel like a unified
@@ -581,7 +575,6 @@ can navigate between these panes with ease.
581575
> to use the Tmux navigation commands instead:
582576
>
583577
> ```lua
584-
>
585578
> -- nvim/lua/options.lua
586579
> require "nvchad.mappings"
587580
>
@@ -669,8 +662,6 @@ style the UI to your liking.
669662
> [snacks.input](https://github.com/folke/snacks.nvim/blob/main/docs/input.md)
670663
> for similar effect.
671664
672-
<br>
673-
674665
### **Key Mappings**
675666

676667
Similarly, I have a ton of mappings that I have defined so I will just be going
@@ -724,7 +715,7 @@ These are the mappings I use for GitSigns, which I believe are fairly standard.
724715
`gitsigns` works in "hunks" of code, hence all of these mappings begin with an
725716
`h` after the leader.
726717

727-
{{ gif(sources=["demos/gitsigns.mp4"], width=80)}}
718+
{{ gif(sources=["./demos/gitsigns.mp4"], width=80)}}
728719

729720
```lua
730721
map("n", "<leader>hn", "<cmd>lua require'gitsigns'.next_hunk()<CR>", { desc = "Next hunk" })
@@ -739,8 +730,6 @@ map("n", "<leader>hS", "<cmd>lua require'gitsigns'.stage_buffer()<CR>", { desc =
739730
map("n", "<leader>hU", "<cmd>lua require'gitsigns'.reset_buffer_index()<CR>", { desc = "Reset buffer index" })
740731
```
741732

742-
<br>
743-
744733
### **Options**
745734

746735
These options provide a basic, yet highly functional configuration for Neovim

themes/radion

0 commit comments

Comments
 (0)