summaryrefslogtreecommitdiff
path: root/.config/nvim/lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-06-06 21:05:11 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-06-06 21:05:11 +0200
commitfcb8668fc5435ce5f306a8c218d7c1eb1f4d91e5 (patch)
treee7d947146b194115faec1418c0a7753b8ebc48f3 /.config/nvim/lua
parent7d1e8075b8f156f3f8c300326abf730a1a8f2875 (diff)
More of Luke's scripts, some updates to alacritty and nvim
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/_true-zen/init.lua9
-rw-r--r--.config/nvim/lua/settings.lua2
2 files changed, 5 insertions, 6 deletions
diff --git a/.config/nvim/lua/_true-zen/init.lua b/.config/nvim/lua/_true-zen/init.lua
index 1cad678..7608f41 100644
--- a/.config/nvim/lua/_true-zen/init.lua
+++ b/.config/nvim/lua/_true-zen/init.lua
@@ -21,7 +21,6 @@ require("true-zen").setup({
},
top = {
hidden_showtabline = 0,
-
shown_showtabline = 2
},
left = {
@@ -35,10 +34,10 @@ require("true-zen").setup({
},
ataraxis = {
just_do_it_for_me = false,
- left_padding = 5,
- right_padding = 5,
- top_padding = 1,
- bottom_padding = 1
+ left_padding = 64,
+ right_padding = 64,
+ top_padding = 0,
+ bottom_padding = 0
},
integrations = {
integration_galaxyline = true,
diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua
index 0639643..0e38be4 100644
--- a/.config/nvim/lua/settings.lua
+++ b/.config/nvim/lua/settings.lua
@@ -13,7 +13,7 @@ vim.o.pumheight = 10 -- Makes popup menu smaller
vim.o.fileencoding = "utf-8" -- The encoding written to file
vim.o.cmdheight = 2 -- More space for displaying messages
vim.cmd('set colorcolumn=99999') -- fix indentline for now
-vim.o.mouse = "r" -- Enable your mouse
+vim.o.mouse = "a" -- Enable your mouse
vim.o.splitbelow = true -- Horizontal splits will automatically be below
vim.o.termguicolors = true -- set term gui colors most terminals support this
vim.o.splitright = true -- Vertical splits will automatically be to the right