aboutsummaryrefslogtreecommitdiff
path: root/fnl/layouts
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2024-12-02 15:00:06 -0600
committeramelia squires <[email protected]>2024-12-02 15:00:06 -0600
commit27bdad73f556e309ef7426d8c2f875088b9772a9 (patch)
treec878cd074267b6789d28e0a6d5526affe0d95c2a /fnl/layouts
parentf343b6021c3fd58bde0bad35e75fb16451990ba1 (diff)
lots of stuff + work on settings ui
Diffstat (limited to 'fnl/layouts')
-rw-r--r--fnl/layouts/ide.fnl4
-rw-r--r--fnl/layouts/quiet.fnl4
2 files changed, 8 insertions, 0 deletions
diff --git a/fnl/layouts/ide.fnl b/fnl/layouts/ide.fnl
new file mode 100644
index 0000000..8ba6182
--- /dev/null
+++ b/fnl/layouts/ide.fnl
@@ -0,0 +1,4 @@
+(fn []
+(vim.cmd "ToggleTerm direction=horizontal")
+(vim.cmd "Neotree toggle")
+(vim.cmd "Outline"))
diff --git a/fnl/layouts/quiet.fnl b/fnl/layouts/quiet.fnl
new file mode 100644
index 0000000..73d8b0f
--- /dev/null
+++ b/fnl/layouts/quiet.fnl
@@ -0,0 +1,4 @@
+(fn []
+(tset vim.opt :number false)
+(tset vim.o :signcolumn :no)
+(tset vim.opt :fillchars {:eob " "}))