diff --git a/home_config/nvim/lazy-lock.json b/home_config/nvim/lazy-lock.json index eed3a7b..a6e47fd 100644 --- a/home_config/nvim/lazy-lock.json +++ b/home_config/nvim/lazy-lock.json @@ -6,11 +6,11 @@ "conform.nvim": { "branch": "master", "commit": "db8a4a9edb217067b1d7a2e0362c74bfe9cc944d" }, "flash.nvim": { "branch": "main", "commit": "3c942666f115e2811e959eabbdd361a025db8b63" }, "friendly-snippets": { "branch": "main", "commit": "efff286dd74c22f731cdec26a70b46e5b203c619" }, - "gitsigns.nvim": { "branch": "main", "commit": "4c40357994f386e72be92a46f41fc1664c84c87d" }, - "grug-far.nvim": { "branch": "main", "commit": "1b7a54633071cbb7a378162b8f04a38913987d64" }, + "gitsigns.nvim": { "branch": "main", "commit": "011dc6718bcebdf92a5336bb0da79189c3afe621" }, + "grug-far.nvim": { "branch": "main", "commit": "0ec6c3a9ef63703975e800d7386b6114863e1f9d" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" }, - "lualine.nvim": { "branch": "master", "commit": "f4f791f67e70d378a754d02da068231d2352e5bc" }, + "lualine.nvim": { "branch": "master", "commit": "edf4b24861fa5d586058ff2c9e8982bb971f7098" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "1a31f824b9cd5bc6f342fc29e9a53b60d74af245" }, "mason.nvim": { "branch": "main", "commit": "fc98833b6da5de5a9c5b1446ac541577059555be" }, "mini.ai": { "branch": "main", "commit": "6e01c0e5a15554852546fac9853960780ac52ed4" }, @@ -20,7 +20,7 @@ "nui.nvim": { "branch": "main", "commit": "8d3bce9764e627b62b07424e0df77f680d47ffdb" }, "nvim-lint": { "branch": "master", "commit": "6e9dd545a1af204c4022a8fcd99727ea41ffdcc8" }, "nvim-lspconfig": { "branch": "master", "commit": "8a1529e46eef5efc86c34c8d9bdd313abc2ecba0" }, - "nvim-treesitter": { "branch": "master", "commit": "cf0eabc16cf32d69f7612d0e023ef210d84cdde6" }, + "nvim-treesitter": { "branch": "master", "commit": "8b79cddc708cb8549562f0101f7f509ad7cebf97" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "143856b1cee509a190cc8c17ddb0638002171235" }, "nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" }, "persistence.nvim": { "branch": "main", "commit": "166a79a55bfa7a4db3e26fc031b4d92af71d0b51" }, diff --git a/home_root/.wezterm.lua b/home_root/.wezterm.lua index 5e3a4b9..3ca3f9a 100644 --- a/home_root/.wezterm.lua +++ b/home_root/.wezterm.lua @@ -6,14 +6,87 @@ local config = wezterm.config_builder() config.font = wezterm.font("VictorMono Nerd Font") config.font_size = 16 -config.colors = {} +config.enable_scroll_bar = true +config.colors = { + -- Australis Dark Colorscheme + -- The default text color + foreground = '#a9bcc3', + -- The default background color + background = '#222531', -config.window_background_opacity = 0.85 -config.macos_window_background_blur = 40 + -- Overrides the cell background color when the current cell is occupied by the + -- cursor and the cursor style is set to Block + cursor_bg = '#6388D8', + -- Overrides the text color when the current cell is occupied by the cursor + cursor_fg = '#373b46', + -- Specifies the border color of the cursor when the cursor style is set to Block, + -- or the color of the vertical or horizontal bar when the cursor style is set to + -- Bar or Underline. + cursor_border = '#6388D8', + + -- the foreground color of selected text + selection_fg = '#373b46', + -- the background color of selected text + selection_bg = '#6388D8', + + -- The color of the scrollbar "thumb"; the portion that represents the current viewport + scrollbar_thumb = '#373b46', + + -- The color of the split lines between panes + split = '#373b46', + + ansi = { + '#222531', -- 'black', + '#ff491a', -- 'maroon', + '#16B866', -- 'green', + '#e1c631', -- 'olive', + '#6388D8', -- 'navy', + '#9d78ff', -- 'purple', + '#00b1a8', -- 'teal', + '#a9bcc3', -- 'silver', + }, + brights = { + '#373b46', -- 'grey', + '#ff854f', -- 'red', + '#51e08a', -- 'lime', + '#FFE14E', -- 'yellow', + '#a4c4ff', -- 'blue', + '#d8adff', -- 'fuchsia', + '#42dcd1', -- 'aqua', + '#cce7ec', -- 'white', + }, + + compose_cursor = 'FFE14E', + + -- Colors for copy_mode and quick_select + -- available since: 20220807-113146-c2fee766 + -- In copy_mode, the color of the active text is: + -- 1. copy_mode_active_highlight_* if additional text was selected using the mouse + -- 2. selection_* otherwise + copy_mode_active_highlight_bg = { Color = '#6388D8' }, + -- use `AnsiColor` to specify one of the ansi color palette values + -- (index 0-15) using one of the names "Black", "Maroon", "Green", + -- "Olive", "Navy", "Purple", "Teal", "Silver", "Grey", "Red", "Lime", + -- "Yellow", "Blue", "Fuchsia", "Aqua" or "White". + copy_mode_active_highlight_fg = { Color = '#373b46' }, + copy_mode_inactive_highlight_bg = { Color = '#222531' }, + copy_mode_inactive_highlight_fg = { Color = '#373b46' }, + + quick_select_label_bg = { AnsiColor = 'Fuchsia' }, + quick_select_label_fg = { AnsiColor = 'Black' }, + quick_select_match_bg = { AnsiColor = 'Navy' }, + quick_select_match_fg = { AnsiColor = 'Grey' }, + +--- input_selector_label_bg = { AnsiColor = 'Black' }, -- (*Since: Nightly Builds Only*) +--- input_selector_label_fg = { Color = '#ffffff' }, -- (*Since: Nightly Builds Only*) +} + + config.window_background_opacity = 0.85 + config.macos_window_background_blur = 40 -- Add configration here -config.enable_tab_bar = false -config.window_decorations = "RESIZE" + config.enable_tab_bar = false + config.window_decorations = "RESIZE" return config diff --git a/home_root/.zshrc b/home_root/.zshrc index ae42df5..aa41784 100644 --- a/home_root/.zshrc +++ b/home_root/.zshrc @@ -100,7 +100,7 @@ zinit light Aloxaf/fzf-tab if [[ $(uname) == "Darwin" ]]; then - source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh + source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh elif [[ $(uname) == "Linux" ]]; then source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh fi