From fd316c0ede4d018afa83b140da3b24ba28c227fb Mon Sep 17 00:00:00 2001 From: juancwu <46619361+juancwu@users.noreply.github.com> Date: Wed, 28 Jun 2023 19:47:28 -0400 Subject: [PATCH] some changes that i dont remember doing --- .config/fish/conf.d/tide.fish | 21 +++++++++++++++++++++ .config/nvim/lua/juancwu/options.lua | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 .config/fish/conf.d/tide.fish diff --git a/.config/fish/conf.d/tide.fish b/.config/fish/conf.d/tide.fish new file mode 100644 index 0000000..3a2410f --- /dev/null +++ b/.config/fish/conf.d/tide.fish @@ -0,0 +1,21 @@ +set -g tide_git_bg_color 268bd2 +set -g tide_git_bg_color_unstable C4A000 +set -g tide_git_bg_color_urgent CC0000 +set -g tide_git_branch_color 000000 +set -g tide_git_color_branch 000000 +set -g tide_git_color_conflicted 000000 +set -g tide_git_color_dirty 000000 +set -g tide_git_color_operation 000000 +set -g tide_git_color_staged 000000 +set -g tide_git_color_stash 000000 +set -g tide_git_color_untracked 000000 +set -g tide_git_color_upstream 000000 +set -g tide_git_conflicted_color 000000 +set -g tide_git_dirty_color 000000 +set -g tide_git_icon  +set -g tide_git_operation_color 000000 +set -g tide_git_staged_color 000000 +set -g tide_git_stash_color 000000 +set -g tide_git_untracked_color 000000 +set -g tide_git_upstream_color 000000 +set -g tide_pwd_bg_color 444444 diff --git a/.config/nvim/lua/juancwu/options.lua b/.config/nvim/lua/juancwu/options.lua index 87f4dc7..54f2fdc 100644 --- a/.config/nvim/lua/juancwu/options.lua +++ b/.config/nvim/lua/juancwu/options.lua @@ -7,9 +7,9 @@ vim.opt.relativenumber = true -- juicy relativity vim.opt.autoindent = true vim.opt.smartindent = true -vim.opt.tabstop = 4 -vim.opt.softtabstop = 4 -vim.opt.shiftwidth = 4 +vim.opt.tabstop = 2 +vim.opt.softtabstop = 2 +vim.opt.shiftwidth = 2 vim.opt.expandtab = true vim.opt.smarttab = true vim.opt.breakindent = true