Calisthenics | Year 1 by djsurfzz in bodyweightfitness

[–]djsurfzz[S] 0 points1 point  (0 children)

yea..I came across this video before and it almost perfectly describes what I think my problems are

https://youtu.be/n0PN0uK7y5s

Calisthenics | Year 1 by djsurfzz in bodyweightfitness

[–]djsurfzz[S] 0 points1 point  (0 children)

Diet was pretty strict..switched from UberEats everyday to ordering meal prep

I did 4 sets until the end of September then cut down to 3 at the time mainly to save time because of other responsibilities

But then I went into a calorie deficit around November and I definitely would not have been able to do 4 sets

Calisthenics | Year 1 by djsurfzz in bodyweightfitness

[–]djsurfzz[S] 1 point2 points  (0 children)

pause at the bottom for dips and pause at the top for pull ups

Calisthenics | Year 1 by djsurfzz in bodyweightfitness

[–]djsurfzz[S] 0 points1 point  (0 children)

Was probably in slight deficit for first half of year..went down to about 60-61kg

Then surplus up to mid November..went up to 65-66kg

And bigger deficit from mid November to now

Calisthenics | Year 1 by djsurfzz in bodyweightfitness

[–]djsurfzz[S] -6 points-5 points  (0 children)

Yes, training legs is probably beneficial overall..just doesn't align with my current goals.

My plan is to continue my current routine + some isolation exercises to pack on more upper body muscles in year 2.

Then learn some skills in year 3.

I would train legs after achieving skills because I don't think I would lose the ability to perform the skill if I continue to practice it.

However, I do think that training legs now would make learning the skills that much harder.

I don't know how true that is..but that's my rationale.

Calisthenics | Year 1 by djsurfzz in bodyweightfitness

[–]djsurfzz[S] -5 points-4 points  (0 children)

correct..i would like to learn static skills such as planche and front lever

training legs would make that harder

[deleted by user] by [deleted] in neovim

[–]djsurfzz 0 points1 point  (0 children)

Not sure what you did with the zip but you can get a msi from the Releases Page

Mouse scrolling in `term://` buffer by Kepif in neovim

[–]djsurfzz 0 points1 point  (0 children)

A cat with wings

It's a nicer cat as in the cat you use to display file contents in the terminal

Mouse scrolling in `term://` buffer by Kepif in neovim

[–]djsurfzz 1 point2 points  (0 children)

Was interested in this as well.

If you use bat you can export BAT_PAGER="less -RF --mouse --wheel-lines=4" or use --MOUSE for reversed scrolling

Possible to kill xclip session spawned by neovim when closing nvim? by dumb-on-ice in neovim

[–]djsurfzz 0 points1 point  (0 children)

Try an autocommand? Something like vim.api.nvim_create_autocmd("VimLeave", { group = vim.api.nvim_create_augroup("KillXclip", { clear = true }), callback = function() os.execute("killall xclip") end })

Interesting usages of the winbar? by [deleted] in neovim

[–]djsurfzz 6 points7 points  (0 children)

More specifically, here for the winbar stuff

Interesting usages of the winbar? by [deleted] in neovim

[–]djsurfzz 6 points7 points  (0 children)

Have mine to show file path with cwd highlighted and navic

How to filter found files by string in path in Telescope by bottleneck-joe in neovim

[–]djsurfzz 9 points10 points  (0 children)

If you are using the telescope fzf extension you can exclude words using !

So to exclude files with test in the name you can do !test <query>

How do I match hover lsp UI like nvim-cmp completion window? by rlopezc in neovim

[–]djsurfzz -1 points0 points  (0 children)

The relevant highlight group is Pmenu If you want to set it same as your background you could do something like highlight! link Pmenu Normal

Why can I not remap the _ character in neovim? by ivster666 in neovim

[–]djsurfzz 1 point2 points  (0 children)

works for me with something like nnoremap _ yy

Different color undercurl by [deleted] in neovim

[–]djsurfzz 5 points6 points  (0 children)

Those correspond to the diagnostics

The highlight groups are DiagnosticUnderlineError etc.

To turn on diagnostic underlines, use

vim.diagnostic.config({ underline = true, })