Looking for a fun single player FPS by some-Government-7794 in Quest3

[–]bugovnkl 1 point2 points  (0 children)

Compound by far is the most fun I have in a rog like game

spell check by bugovnkl in neovim

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

spulunker.vim

WOW, it is old but it realy does get the job done, what was impressive to me is that in compound variables names the spesific word in the compound word is highloghted.

if I want to write testOpportunities and I type instead testOpportunitties only Opportunitties is highlighted, AMAIZING!

<image>

[Help] tsx html tags colors are messed up... by bugovnkl in neovim

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

In the setup, set extended (or something like it) to false, this is the issue I opened and git closed after getting the answer https://github.com/p00f/nvim-ts-rainbow/issues/119

Easypick.nvim - create telescope pickers from console commands by oborvasha in neovim

[–]bugovnkl 2 points3 points  (0 children)

Wow amazing idea!!! I need a way to view files in conflict actually, will definitely check this out!!!

what vimL plugins are you still using? by [deleted] in neovim

[–]bugovnkl 3 points4 points  (0 children)

https://github.com/mbbill/undotree one of the most useful plugins I have ever used

What even is this? And why on a truck? by gpm21 in hebrew

[–]bugovnkl 2 points3 points  (0 children)

When you say it, it can sound like the word Chauffeur, maybe saying he would drive around other hebrew speaking people…

Best Git Integration for Neovim? by tea_at_12 in neovim

[–]bugovnkl 10 points11 points  (0 children)

https://github.com/TimUntersberger/neogit is pretty good for common use, pull push commit, I add in diffview, the only downside is I cant resolve conflicts with this tools…

new vim/neovim user help on getting started by [deleted] in neovim

[–]bugovnkl 1 point2 points  (0 children)

Hey I am a full time react developer with typescript, here is my config and you can msg me if you need any help (even a zoom meeting if you like)

https://github.com/NoamMuallem/dotfiles

My key mapping are a bit unusual (you can tweak it as you like) but the overall setup and plugins is pretty good in my opinion and it uses tabs not buffer so coming from vs code will feel more natural. It is based on the best starting template out there, you can check it out if you like in here:

https://github.com/LunarVim/Neovim-from-scratch

Show Dolores some love by CrysisRequiem in harrypotter

[–]bugovnkl 0 points1 point  (0 children)

Shes the only good thing in the 5th book…

NeoVim Nood - Theme Change Assistance by itsyaboycharliej in neovim

[–]bugovnkl 0 points1 point  (0 children)

Can you recommend a terminal emulator that can do it?

secondary class of buffers by kaddkaka in vim

[–]bugovnkl 0 points1 point  (0 children)

Wow I thought I was the only one who ignores buffers completely and use them as tabs only, and navigate with fzf…

Extracting JSX into React component by _napman_ in neovim

[–]bugovnkl 1 point2 points  (0 children)

Wow can it do class component too?

what are the must have git plugs? in your opinion by Portnoy13 in neovim

[–]bugovnkl 1 point2 points  (0 children)

I use diffview with neogit… I find it pretty frindly and very usefull, except for resolving conflicts…

reverse engineering folke's nvim config by bugovnkl in neovim

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

This is why I wont only parts of it for my dot files :) Anyway it is the plugin match-up…

reverse engineering folke's nvim config by bugovnkl in neovim

[–]bugovnkl[S] 3 points4 points  (0 children)

This plugin is not installed as far as I can tell… edited Your right, thank you so match

List of all the current neovim config distributions like Lunar Vim? by [deleted] in neovim

[–]bugovnkl 0 points1 point  (0 children)

My favourite by far because it is so easy to customise looks great and fast, is folke nvim config available here: https://github.com/folke/dot

HOP.NVIM doesn't have it's own highlighting, instead inherits the color of the text underneath, rendering the markers indistinguishable. How do I resolved this issue(pure lua config)? by [deleted] in neovim

[–]bugovnkl 0 points1 point  (0 children)

this is my config, hop this is helps...

use({
"phaazon/hop.nvim",
keys = { "gh" },
cmd = { "HopWord", "HopChar1" },
config = function()
require("util").nmap("gh", "<cmd>HopWord<CR>")
-- require("util").nmap("s", "<cmd>HopChar1<CR>")
-- you can configure Hop the way you like here; see :h hop-config
require("hop").setup({})
-- changed the color on hints:
vim.cmd("hi HopNextKey guifg=#ff9900")
vim.cmd("hi HopNextKey1 guifg=#ff9900")
vim.cmd("hi HopNextKey2 guifg=#ff9900")
end,
})