diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-30 13:05:56 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-30 13:05:56 +0200 |
commit | 1ff6d4b03f8d856699b479bc71ba1e26df0eb42e (patch) | |
tree | e09a0437699560b7b32284db14443a1b83f8cb56 /fnl/config | |
parent | 04098ac968410bf3e1b091c1f18eb15e326dcf80 (diff) |
fix(zen): update hight and width
Diffstat (limited to 'fnl/config')
-rw-r--r-- | fnl/config/zen.fnl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/fnl/config/zen.fnl b/fnl/config/zen.fnl index cc1d685..1812f3d 100644 --- a/fnl/config/zen.fnl +++ b/fnl/config/zen.fnl @@ -1,13 +1,14 @@ ;; Zen mode. -(module config.zen {autoload {util util}}) +(module config.zen + {autoload {util util}}) (let [zen-mode (util.load-plugin :zen-mode)] - (zen-mode.setup - {:window + (zen-mode.setup + {:window {:backdrop 1 - :height 1 - :width 120 - :options + :height 0.9 + :width 0.85 + :options {:signcolumn :no :number false :relativenumber false}} |