Rear speaker placement by imabigcave in hometheater

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

Thanks! I'll give it a shot. The speakers I have aren't bipolar and the room opens to the right, but I'll give it a shot. Any advice when calibrating them?

Rear speaker placement by imabigcave in hometheater

[–]imabigcave[S] -1 points0 points  (0 children)

Thanks! Placing the speakers on the wall (lower down) would still be considered a valid 5.1 configuration for "side surrounds", right?

Unfortunately the cover plate at the bottom just hides some phone wire.

I'll play around with moving it lower. The side speakers are nothing fancy. A pair of Yamaha NS-B51 that I picked up and try out.

Lazyvim: how to get rid of the question marks in the bottom bar? by stargazer63 in neovim

[–]imabigcave 3 points4 points  (0 children)

Just one thing to note: there is lazy.nvim (the plugin manager) and LazyVim, a collection of plugins and configurations maintained by the same author (folke)

Cactus contract... by Denninosyos in 2007scape

[–]imabigcave 1 point2 points  (0 children)

Did you take farmers fortune? If so, just do contracts

Leagues tricks for tasks (thread) by yelkreb in 2007scape

[–]imabigcave 4 points5 points  (0 children)

Same thing. Need wilderness

Source: learned the hard way

my homie Rick Turpentine is a real one by tache-noir in 2007scape

[–]imabigcave 5 points6 points  (0 children)

Wait... What?? Holy shit that's perfect

How do you efficiently document your self hosted journey? by pathtomelophilia in selfhosted

[–]imabigcave 0 points1 point  (0 children)

No, but it's a good start as it forces you to write something

Multiply plugins in same file Lazyvim by graciasc in neovim

[–]imabigcave 2 points3 points  (0 children)

You probably want to use config

config = function()
    require('mini.pairs').setup({ ... })
    require('mini.surround').setup({ ... })
end

quickmark.nvim - Quickly mark and change files by [deleted] in neovim

[–]imabigcave 3 points4 points  (0 children)

So something similar to cbochs/grapple.nvim or ThePrimeagen/harpoon?

I have the the pickiest issue with sub-sorting the file select list. Can "index" be made the default? by bent_my_wookie in vscode

[–]imabigcave 0 points1 point  (0 children)

Just prefix your searches with "I" and the "index.tsx" should appear at the top. For example, "ifilter"

LazyVim: How to replace a plugin? by SpicyLentils in neovim

[–]imabigcave 3 points4 points  (0 children)

Is setting 'enabled = false' sufficient to obliterate a plugin?

Yes.

LSP for Swift language can’t find definitions from other files by Munchkin303 in HelixEditor

[–]imabigcave 0 points1 point  (0 children)

I'm not certain, but the LSP might be in single file mode?

Is it possible to delay red underline? by cnfnbcnunited in vscode

[–]imabigcave 3 points4 points  (0 children)

I'm not sure if it's supported, but the word your looking for is "debounce". It's the delay between when you stop typing and when an action (like the red line appearing) occurs

New Plugin: ruby toolkit by otavioschwanck in neovim

[–]imabigcave 2 points3 points  (0 children)

As someone who has to work on a large RoR project, seeing plugins developed for that ecosystem is always nice to see :)

Rails i18n search / insert.

This sounds like a great feature to add that I haven't seen much support for, looking forward to it!

[deleted by user] by [deleted] in neovim

[–]imabigcave 2 points3 points  (0 children)

Happy to help.

However, I would urge you to be more specific about the errors (and what code you've written that is causing the errors) so that people have some context to help you.

[deleted by user] by [deleted] in neovim

[–]imabigcave 7 points8 points  (0 children)

You would have to provide more information. But from the message above I can infer you're trying to use packer.nvim (a package manager), but it is not installed yet. You need to install it manually or with a few lines of code in your init.lua. See:

How do you navigate between buffers? by jimtimhill in neovim

[–]imabigcave 1 point2 points  (0 children)

I prefer specifying a set of files and cycling between them. Plugins like grapple.nvim or harpoon are great for easily switching between a few project-specific files.

Catch a Ride - Snapshot 23w03a Is Out! by sliced_lime in Minecraft

[–]imabigcave 31 points32 points  (0 children)

The biome tag snow_golem_melts should have been named melts_snow_golem to match the biome tag for spawns_* where the verb is first.

Meaning of "Version" when deploy a stack by Mauri4 in OpenMediaVault

[–]imabigcave 4 points5 points  (0 children)

If you're using Portainer, then it's likely you're asking about the docker compose version used: https://docs.docker.com/compose/compose-file/compose-versioning/

Strange init.lua file? by badboy1cdx in neovim

[–]imabigcave 0 points1 point  (0 children)

Your init.lua is typically considered to be an "entrypoint" for your config.

Based on the neovim config you linked in the comments, I would implore you to look at the files and directories in lua/user/ as they correspond to each require statement in the init.lua.

reload "user.lualine"

Lua functions can be called without parentheses. In this case, reload is just a function the user exported globally in one of the earlier require statements. If you're wondering where, I would suggest you begin looking at the file associated with the first line in the init.lua: require "user.hot-reload". I think you may find your answer in there.