mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-04-20 00:37:44 +02:00
Compare commits
5 Commits
c5ddcf2da4
...
f9d8e6c426
Author | SHA1 | Date | |
---|---|---|---|
f9d8e6c426 | |||
11953fcf64 | |||
4c6d1cd885 | |||
5996f8d110 | |||
bbf169004f |
@ -115,6 +115,7 @@
|
|||||||
"volume": -6.499999999999993
|
"volume": -6.499999999999993
|
||||||
},
|
},
|
||||||
"plugins_order": [
|
"plugins_order": [
|
||||||
|
"stereo_tools#0",
|
||||||
"compressor#0",
|
"compressor#0",
|
||||||
"deesser#0",
|
"deesser#0",
|
||||||
"filter#0",
|
"filter#0",
|
||||||
@ -128,6 +129,27 @@
|
|||||||
"input-gain": 0.0,
|
"input-gain": 0.0,
|
||||||
"model-path": "",
|
"model-path": "",
|
||||||
"output-gain": 0.0
|
"output-gain": 0.0
|
||||||
|
},
|
||||||
|
"stereo_tools#0": {
|
||||||
|
"balance-in": 0.22000000000000006,
|
||||||
|
"balance-out": 0.0,
|
||||||
|
"bypass": false,
|
||||||
|
"delay": 0.0,
|
||||||
|
"input-gain": 0.0,
|
||||||
|
"middle-level": 0.0,
|
||||||
|
"middle-panorama": 0.0,
|
||||||
|
"mode": "LR > MS (Stereo to Mid-Side)",
|
||||||
|
"mutel": false,
|
||||||
|
"muter": false,
|
||||||
|
"output-gain": 0.0,
|
||||||
|
"phasel": false,
|
||||||
|
"phaser": false,
|
||||||
|
"sc-level": 1.0,
|
||||||
|
"side-balance": 0.0,
|
||||||
|
"side-level": 0.0,
|
||||||
|
"softclip": false,
|
||||||
|
"stereo-base": 0.0,
|
||||||
|
"stereo-phase": 0.0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,7 @@ return require("lazy").setup({
|
|||||||
-- colorscheme
|
-- colorscheme
|
||||||
{
|
{
|
||||||
'tiyn/tccs.nvim',
|
'tiyn/tccs.nvim',
|
||||||
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require('tccs').setup({
|
require('tccs').setup({
|
||||||
@ -44,7 +45,10 @@ return require("lazy").setup({
|
|||||||
{
|
{
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
{
|
||||||
'nvim-tree/nvim-web-devicons',
|
'nvim-tree/nvim-web-devicons',
|
||||||
|
lazy = true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'f-person/git-blame.nvim',
|
'f-person/git-blame.nvim',
|
||||||
config = function()
|
config = function()
|
||||||
@ -323,10 +327,29 @@ return require("lazy").setup({
|
|||||||
|
|
||||||
-- showing color of hex values, etc
|
-- showing color of hex values, etc
|
||||||
{
|
{
|
||||||
'norcalli/nvim-colorizer.lua',
|
'nvchad/nvim-colorizer.lua',
|
||||||
opts = {
|
opts = {
|
||||||
|
filetypes = {
|
||||||
'*',
|
'*',
|
||||||
'!markdown'
|
'!markdown'
|
||||||
|
},
|
||||||
|
user_default_options = {
|
||||||
|
RGB = true,
|
||||||
|
RRGGBB = true,
|
||||||
|
RRGGBBAA = true,
|
||||||
|
AARRGGBB = true,
|
||||||
|
rgb_fn = true,
|
||||||
|
hsl_fn = true,
|
||||||
|
css_fn = true,
|
||||||
|
mode = "virtualtext",
|
||||||
|
virtualtext = " ",
|
||||||
|
},
|
||||||
|
-- all the sub-options of filetypes apply to buftypes
|
||||||
|
buftypes = {
|
||||||
|
"*",
|
||||||
|
"!prompt",
|
||||||
|
"!popup"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -335,7 +358,10 @@ return require("lazy").setup({
|
|||||||
"nvim-tree/nvim-tree.lua",
|
"nvim-tree/nvim-tree.lua",
|
||||||
cmd = "NvimTreeToggle",
|
cmd = "NvimTreeToggle",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
{
|
||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
lazy = true
|
||||||
|
},
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
sort_by = "case_sensitive",
|
sort_by = "case_sensitive",
|
||||||
@ -450,6 +476,8 @@ return require("lazy").setup({
|
|||||||
-- additional quote/parantheses funtions
|
-- additional quote/parantheses funtions
|
||||||
{
|
{
|
||||||
'kylechui/nvim-surround',
|
'kylechui/nvim-surround',
|
||||||
|
version = "*",
|
||||||
|
event = "VeryLazy",
|
||||||
opts = {}
|
opts = {}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -479,6 +507,10 @@ return require("lazy").setup({
|
|||||||
{
|
{
|
||||||
'gelguy/wilder.nvim',
|
'gelguy/wilder.nvim',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
{
|
||||||
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
lazy = true
|
||||||
|
},
|
||||||
'roxma/nvim-yarp',
|
'roxma/nvim-yarp',
|
||||||
'roxma/vim-hug-neovim-rpc',
|
'roxma/vim-hug-neovim-rpc',
|
||||||
'romgrk/fzy-lua-native'
|
'romgrk/fzy-lua-native'
|
||||||
@ -589,7 +621,12 @@ return require("lazy").setup({
|
|||||||
-- list of errors
|
-- list of errors
|
||||||
{
|
{
|
||||||
'folke/trouble.nvim',
|
'folke/trouble.nvim',
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
dependencies = {
|
||||||
|
{
|
||||||
|
'nvim-tree/nvim-web-devicons',
|
||||||
|
lazy = true
|
||||||
|
}
|
||||||
|
},
|
||||||
opts = {}
|
opts = {}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user