1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-04-20 00:37:44 +02:00

Compare commits

..

5 Commits

Author SHA1 Message Date
f9d8e6c426 nvim: improved tccs loading 2023-08-25 05:07:50 +02:00
11953fcf64 nvim: improved devicons loading 2023-08-25 05:06:40 +02:00
4c6d1cd885 nvim: improved nvim-surround loading 2023-08-25 05:03:26 +02:00
5996f8d110 nvim: swapped colorizer plugin 2023-08-25 04:58:36 +02:00
bbf169004f easyeffects: centering input 2023-08-25 03:45:18 +02:00
2 changed files with 65 additions and 6 deletions

View File

@ -115,6 +115,7 @@
"volume": -6.499999999999993
},
"plugins_order": [
"stereo_tools#0",
"compressor#0",
"deesser#0",
"filter#0",
@ -128,6 +129,27 @@
"input-gain": 0.0,
"model-path": "",
"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
}
}
}

View File

@ -16,6 +16,7 @@ return require("lazy").setup({
-- colorscheme
{
'tiyn/tccs.nvim',
lazy = false,
priority = 1000,
config = function()
require('tccs').setup({
@ -44,7 +45,10 @@ return require("lazy").setup({
{
'nvim-lualine/lualine.nvim',
dependencies = {
{
'nvim-tree/nvim-web-devicons',
lazy = true
},
{
'f-person/git-blame.nvim',
config = function()
@ -323,10 +327,29 @@ return require("lazy").setup({
-- showing color of hex values, etc
{
'norcalli/nvim-colorizer.lua',
'nvchad/nvim-colorizer.lua',
opts = {
filetypes = {
'*',
'!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",
cmd = "NvimTreeToggle",
dependencies = {
{
"nvim-tree/nvim-web-devicons",
lazy = true
},
},
opts = {
sort_by = "case_sensitive",
@ -450,6 +476,8 @@ return require("lazy").setup({
-- additional quote/parantheses funtions
{
'kylechui/nvim-surround',
version = "*",
event = "VeryLazy",
opts = {}
},
@ -479,6 +507,10 @@ return require("lazy").setup({
{
'gelguy/wilder.nvim',
dependencies = {
{
"nvim-tree/nvim-web-devicons",
lazy = true
},
'roxma/nvim-yarp',
'roxma/vim-hug-neovim-rpc',
'romgrk/fzy-lua-native'
@ -589,7 +621,12 @@ return require("lazy").setup({
-- list of errors
{
'folke/trouble.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
dependencies = {
{
'nvim-tree/nvim-web-devicons',
lazy = true
}
},
opts = {}
},