From 1233df80e2983da9c4360f328438b803ba7024f8 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Wed, 18 Dec 2024 20:15:17 -0500 Subject: [PATCH] save --- .../nvim/lua/vxclutch/lazy/appearance.lua | 124 +++++++++--------- nvim/.config/nvim/stylua.toml | 6 + 2 files changed, 68 insertions(+), 62 deletions(-) create mode 100644 nvim/.config/nvim/stylua.toml diff --git a/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua b/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua index bd9be12..78c124e 100644 --- a/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua +++ b/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua @@ -1,64 +1,64 @@ return { - "nvim-lualine/lualine.nvim", - requires = { "kyazdani42/nvim-web-devicons" }, - dependencies = { - "stevearc/dressing.nvim", - "norcalli/nvim-colorizer.lua", - "rktjmp/lush.nvim", - "zaldih/themery.nvim", - -- themes - "FrenzyExists/aquarium-vim", - "vague2k/vague.nvim", - "catppuccin/nvim", - "morhetz/gruvbox", - "shaunsingh/nord.nvim", - "rose-pine/neovim", - "folke/tokyonight.nvim", - "uloco/bluloco.nvim" - }, - config = function() - require("lualine").setup({ - options = { - theme = "auto", - component_separators = "", - section_separators = "", - }, - sections = { - lualine_a = { "mode" }, - lualine_b = {}, - lualine_c = { "filename" }, - lualine_x = {}, - lualine_y = {}, - lualine_z = { - function() - return "[" .. vim.bo.filetype .. "]" - end, - }, - }, - }) - require("colorizer").setup({ - "*", - css = { rgb_fn = true }, - }) - require("dressing").setup({ - select = { - backend = { "nui", "telescope", "builtin" } - } - }) - require("themery").setup({ - themes = { - "aquarium", - "vague", - "catppuccin-mocha", - "gruvbox", - "catppuccin-frappe", - "catppuccin-macchiato", - "nord", - "rose-pine", - "tokyonight", - "bluloco-dark", - }, - livePreview = true, - }) - end, + "nvim-lualine/lualine.nvim", + requires = { "kyazdani42/nvim-web-devicons" }, + dependencies = { + "stevearc/dressing.nvim", + "norcalli/nvim-colorizer.lua", + "rktjmp/lush.nvim", + "zaldih/themery.nvim", + -- themes + "FrenzyExists/aquarium-vim", + "vague2k/vague.nvim", + "catppuccin/nvim", + "morhetz/gruvbox", + "shaunsingh/nord.nvim", + "rose-pine/neovim", + "folke/tokyonight.nvim", + "uloco/bluloco.nvim", + }, + config = function() + require("lualine").setup { + options = { + theme = "auto", + component_separators = "", + section_separators = "", + }, + sections = { + lualine_a = { "mode" }, + lualine_b = {}, + lualine_c = { "filename" }, + lualine_x = {}, + lualine_y = {}, + lualine_z = { + function() + return "[" .. vim.bo.filetype .. "]" + end, + }, + }, + } + require("colorizer").setup { + "*", + css = { rgb_fn = true }, + } + require("dressing").setup { + select = { + backend = { "nui", "telescope", "builtin" }, + }, + } + require("themery").setup { + themes = { + "aquarium", + "vague", + "catppuccin-mocha", + "gruvbox", + "catppuccin-frappe", + "catppuccin-macchiato", + "nord", + "rose-pine", + "tokyonight", + "bluloco-dark", + }, + livePreview = true, + } + end, } diff --git a/nvim/.config/nvim/stylua.toml b/nvim/.config/nvim/stylua.toml new file mode 100644 index 0000000..ecb6dca --- /dev/null +++ b/nvim/.config/nvim/stylua.toml @@ -0,0 +1,6 @@ +column_width = 120 +line_endings = "Unix" +indent_type = "Spaces" +indent_width = 2 +quote_style = "AutoPreferDouble" +call_parentheses = "None"