From 59b7f07824f1cb1e0cc286816482d4e22e39ffc9 Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Sat, 3 Feb 2018 19:17:36 -0500 Subject: [PATCH 1/3] Added Terminator config from NZXT --- NZXT-terminator | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 NZXT-terminator diff --git a/NZXT-terminator b/NZXT-terminator new file mode 100644 index 0000000..5457bf4 --- /dev/null +++ b/NZXT-terminator @@ -0,0 +1,36 @@ +[global_config] + inactive_color_offset = 1.0 + title_font = Noto Sans 10 + title_transmit_bg_color = "#3d3d3d" +[keybindings] + close_term = w + cycle_next = Tab + go_down = j + go_left = h + go_right = l + go_up = k + new_tab = t + new_window = n + split_horiz = i + split_vert = o +[layouts] + [[default]] + [[[child1]]] + parent = window0 + type = Terminal + [[[window0]]] + parent = "" + type = Window +[plugins] +[profiles] + [[default]] + background_image = None + copy_on_selection = True + cursor_color = "#b9b9b9" + custom_command = env TERM=xterm-256color bash + font = Monospace 9 + foreground_color = "#0077ff" + palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#aaaaaa:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff" + scrollbar_position = hidden + use_custom_command = True + use_system_font = False From 1a28b4b93e339d73d75c4b65e96e64f7a64bf466 Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Wed, 31 Jan 2018 00:03:56 -0500 Subject: [PATCH 2/3] Generic for, alias and multi-line equation For C, bash and LaTeX respectively. --- c.snippets | 5 +++++ sh.snippets | 3 +++ texmath.snippets | 7 +++++++ 3 files changed, 15 insertions(+) create mode 100644 c.snippets create mode 100644 sh.snippets create mode 100644 texmath.snippets diff --git a/c.snippets b/c.snippets new file mode 100644 index 0000000..b213a7f --- /dev/null +++ b/c.snippets @@ -0,0 +1,5 @@ +snippet forg "Generic for" +for (int i = 0; i < ${1:count}; i++) { + ${2} +} +endsnippet diff --git a/sh.snippets b/sh.snippets new file mode 100644 index 0000000..9256604 --- /dev/null +++ b/sh.snippets @@ -0,0 +1,3 @@ +snippet alias "Custom alias" +alias ${1:name}="${2:command}" +endsnippet diff --git a/texmath.snippets b/texmath.snippets new file mode 100644 index 0000000..c5a7018 --- /dev/null +++ b/texmath.snippets @@ -0,0 +1,7 @@ +snippet eqs "Equation with split" b +\begin{equation*} + \begin{split} + $0 + \end{split} +\end{equation*} +endsnippet From 5ab1eb5c94562bca0f1167aaf2b334a08c7d8034 Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Sun, 4 Feb 2018 14:42:39 -0500 Subject: [PATCH 3/3] Resolved merge conflicts with custom-vim-snippets --- c.snippets | 5 ----- sh.snippets | 3 --- texmath.snippets | 7 ------- 3 files changed, 15 deletions(-) delete mode 100644 c.snippets delete mode 100644 sh.snippets delete mode 100644 texmath.snippets diff --git a/c.snippets b/c.snippets deleted file mode 100644 index b213a7f..0000000 --- a/c.snippets +++ /dev/null @@ -1,5 +0,0 @@ -snippet forg "Generic for" -for (int i = 0; i < ${1:count}; i++) { - ${2} -} -endsnippet diff --git a/sh.snippets b/sh.snippets deleted file mode 100644 index 9256604..0000000 --- a/sh.snippets +++ /dev/null @@ -1,3 +0,0 @@ -snippet alias "Custom alias" -alias ${1:name}="${2:command}" -endsnippet diff --git a/texmath.snippets b/texmath.snippets deleted file mode 100644 index c5a7018..0000000 --- a/texmath.snippets +++ /dev/null @@ -1,7 +0,0 @@ -snippet eqs "Equation with split" b -\begin{equation*} - \begin{split} - $0 - \end{split} -\end{equation*} -endsnippet