Neovim LSP stuff

This commit is contained in:
2025-06-09 09:24:30 +03:00
parent 054f906de3
commit d259a6fd55
11 changed files with 23 additions and 15 deletions

View File

@ -0,0 +1,33 @@
context.modules = [
{ name = libpipewire-module-filter-chain
args = {
node.description = "Noise Canceling source"
media.name = "Noise Canceling source"
filter.graph = {
nodes = [
{
type = ladspa
name = rnnoise
plugin = /usr/lib/ladspa/librnnoise_ladspa.so
label = noise_suppressor_mono
control = {
"VAD Threshold (%)" = 85.0
"VAD Grace Period (ms)" = 200
"Retroactive VAD Grace (ms)" = 20
}
}
]
}
capture.props = {
node.name = "capture.rnnoise_source"
node.passive = true
audio.rate = 48000
}
playback.props = {
node.name = "rnnoise_source"
media.class = Audio/Source
audio.rate = 48000
}
}
}
]