From d39907bfb679ac72128e51de6ce9e726df13d5ab Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 6 Sep 2022 20:39:10 -0400 Subject: [PATCH 1/3] fix operator color --- ipython_config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ipython_config.py b/ipython_config.py index c0557e1..fe6b5e4 100644 --- a/ipython_config.py +++ b/ipython_config.py @@ -346,7 +346,8 @@ TEAL = "#1ABC9C" RED = "#DB4B4B" LIGHT_RED = "#F7768E" -PURPLE = "#9D7CD8" +PURPLE = "#BB9AF7" +# PURPLE = "#9D7CD8" BLUE = "#7AA2F7" WHITE = "#C0CAF5" @@ -366,7 +367,7 @@ Keyword.Reserved: PURPLE, # except, finally, for, if, not, raise, etc Keyword.Namespace: RED, # "from" and "import" keywords - Operator: WHITE, # brackets, parens + Operator: PURPLE, # brackets, parens Operator.Word: PURPLE, # in, is, and, or, not Punctuation: WHITE, From 9aa204e64e5078fba10b2d958c218f1d36aa2be1 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 6 Sep 2022 20:39:27 -0400 Subject: [PATCH 2/3] fix use_thin_strokes error --- alacritty.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/alacritty.yml b/alacritty.yml index f5d56fa..2741abb 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -29,7 +29,7 @@ font: # `defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO` # This is a global setting and will require a log out or restart to take # effect. - use_thin_strokes: true + # use_thin_strokes: true # If `true`, bold text is drawn using the bright color variants. #draw_bold_text_with_bright_colors: false @@ -417,7 +417,7 @@ schemes: primary: background: '0x1a1b26' foreground: '0xc0caf5' - + # Normal colors normal: black: '0x15161E' @@ -428,7 +428,7 @@ schemes: magenta: '0xbb9af7' cyan: '0x7dcfff' white: '0xa9b1d6' - + # Bright colors bright: black: '0x15161E' @@ -439,7 +439,7 @@ schemes: magenta: '0xbb9af7' cyan: '0x7dcfff' white: '0xc0caf5' - + indexed_colors: - { index: 16, color: '0xff9e64' } - { index: 17, color: '0xdb4b4b' } @@ -449,7 +449,7 @@ schemes: primary: background: '0x24283b' foreground: '0xc0caf5' - + # Normal colors normal: black: '0x1D202F' @@ -460,7 +460,7 @@ schemes: magenta: '0xbb9af7' cyan: '0x7dcfff' white: '0xa9b1d6' - + # Bright colors bright: black: '0x1D202F' @@ -471,7 +471,7 @@ schemes: magenta: '0xbb9af7' cyan: '0x7dcfff' white: '0xc0caf5' - + indexed_colors: - { index: 16, color: '0xff9e64' } - { index: 17, color: '0xdb4b4b' } From a28268ed456f3c2d7164b88d19d895f9ed2743e5 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 6 Sep 2022 20:39:52 -0400 Subject: [PATCH 3/3] update filetypes --- nvim/lua/packer_plugins.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nvim/lua/packer_plugins.lua b/nvim/lua/packer_plugins.lua index 2802a47..e29937c 100644 --- a/nvim/lua/packer_plugins.lua +++ b/nvim/lua/packer_plugins.lua @@ -115,7 +115,7 @@ return require("packer").startup({ }) -- git - use("itchyny/vim-gitbranch") -- until I feel better about vim-fugitive + -- vim-fugitive, someday? use({ "rhysd/conflict-marker.vim", config = function() @@ -156,6 +156,7 @@ return require("packer").startup({ use({ -- "~/code/nvim-tmux/", "jsstevenson/nvim-tmux", + ft = { "tmux" }, requires = { "nvim-lua/plenary.nvim" }, config = function() require("nvim_tmux").setup()