aboutsummaryrefslogtreecommitdiff
path: root/env
diff options
context:
space:
mode:
Diffstat (limited to 'env')
-rw-r--r--env/.config/i3/config2
-rw-r--r--env/.config/vis/plugins.lua6
-rwxr-xr-xenv/.local/bin/scripts/timer.sh3
3 files changed, 10 insertions, 1 deletions
diff --git a/env/.config/i3/config b/env/.config/i3/config
index 15933ca..64637d3 100644
--- a/env/.config/i3/config
+++ b/env/.config/i3/config
@@ -16,7 +16,7 @@ exec ~/.local/bin/system/start-scripts/autostart.sh
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
-font pango:b612:monospace 7, "JetBrainsMono Nerd Font" 7
+font pango:b612 7
# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
diff --git a/env/.config/vis/plugins.lua b/env/.config/vis/plugins.lua
index 2a0844b..58ec327 100644
--- a/env/.config/vis/plugins.lua
+++ b/env/.config/vis/plugins.lua
@@ -8,6 +8,12 @@ end
pcall(require,'plugins/complete-filename')
+local spell_ok, spellcheck = pcall(require,'plugins/vis-spellcheck')
+if spell_ok then
+ spellcheck.disable_syntax_awareness = true
+ spellcheck.typo_style = "fore:black,back:red"
+end
+
pcall(require,'plugins/vis-chain')
local lsp_ok,lsp = pcall(require,'plugins/vis-lspc')
diff --git a/env/.local/bin/scripts/timer.sh b/env/.local/bin/scripts/timer.sh
new file mode 100755
index 0000000..540ab20
--- /dev/null
+++ b/env/.local/bin/scripts/timer.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+sleep "$1"
+notify-send "TIMER DONE" -t 0