From ce1b38e321672f75f794b8885c8858fbef79523b Mon Sep 17 00:00:00 2001 From: EvilMuffinHa Date: Tue, 11 Jul 2023 15:20:36 -0400 Subject: [PATCH 1/2] updates to nvim i guess? --- broken_stuff.md | 5 +++++ tex/beamercolorthemesimpledark.sty | 24 ++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 broken_stuff.md create mode 100644 tex/beamercolorthemesimpledark.sty diff --git a/broken_stuff.md b/broken_stuff.md new file mode 100644 index 0000000..e957111 --- /dev/null +++ b/broken_stuff.md @@ -0,0 +1,5 @@ +Removing actuator/ +Removing scripts/actuator +Removing scripts/landscape +Removing scripts/portrait +Removing tex/beamercolorthemesimpledark.sty diff --git a/tex/beamercolorthemesimpledark.sty b/tex/beamercolorthemesimpledark.sty new file mode 100644 index 0000000..d8235d8 --- /dev/null +++ b/tex/beamercolorthemesimpledark.sty @@ -0,0 +1,24 @@ +\usepackage{amsthm, amssymb, amsmath, bm} + + +\definecolor{gold}{RGB}{234, 157, 52} +\definecolor{rose}{RGB}{215, 130, 126} +\definecolor{foam}{RGB}{86, 148, 159} +\definecolor{text}{RGB}{87, 82, 121} +\definecolor{base}{RGB}{250, 244, 237} +\definecolor{pine}{RGB}{40, 105, 131} +\definecolor{iris}{RGB}{144, 122, 169} +\definecolor{muted}{RGB}{152, 147, 165} +\definecolor{base}{RGB}{250, 244, 237} +\definecolor{love}{RGB}{180, 99, 122} + +\setbeamercolor{background canvas}{bg=base} +\setbeamercolor{section in toc}{fg=love} +\setbeamercolor{title}{fg=pine} +\setbeamercolor{frametitle}{fg=pine} +\setbeamercolor{normal text}{fg=text} + +\setbeamercolor{item}{fg=text} + +\setbeamercolor{frametitle}{fg=pine} +\setbeamercolor{footline}{fg=pine} From eb03b36be0b26b8340b9a0f5ab40e416cb98e199 Mon Sep 17 00:00:00 2001 From: EvilMuffinHa Date: Tue, 11 Jul 2023 15:26:11 -0400 Subject: [PATCH 2/2] more nvim update --- nvim/lua/bootstrap.lua | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/nvim/lua/bootstrap.lua b/nvim/lua/bootstrap.lua index 56caadc..d4e166d 100644 --- a/nvim/lua/bootstrap.lua +++ b/nvim/lua/bootstrap.lua @@ -1,23 +1,23 @@ local fn = vim.fn -local is_bootstrawp = false +local is_bootstrap = false local bootstrap_output = '' local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim' if fn.empty(fn.glob(install_path)) > 0 then - bootstrap_output = fn.system({ - 'git', - 'clone', - '--depth', '1', - 'https://github.com/wbthomason/packer.nvim', - install_path - }) - is_bootstrap = true - vim.cmd 'packloadall' + bootstrap_output = fn.system({ + 'git', + 'clone', + '--depth', '1', + 'https://github.com/wbthomason/packer.nvim', + install_path + }) + is_bootstrap = true + vim.cmd 'packloadall' end return { - is_bootstrap = is_bootstrap, - bootstrap_output = bootstrap_output, + is_bootstrap = is_bootstrap, + bootstrap_output = bootstrap_output, }