Compare commits

...

2 commits

Author SHA1 Message Date
Florian Schmitt
9bb1566180 feat(nvim): relative lines are back, current line hide 2024-04-28 10:51:15 +03:00
Florian Schmitt
9917cf55f8 feat(hosts): get to Aleks's test yunohost 2024-04-28 10:50:32 +03:00
3 changed files with 9 additions and 4 deletions

View file

@ -2,8 +2,9 @@
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here -- Add any additional options here
local opt = vim.opt local opt = vim.opt
opt.scrolloff = 8 opt.scrolloff = 9
opt.wrap = true opt.wrap = true
opt.clipboard = "unnamedplus" opt.clipboard = "unnamedplus"
opt.list = false opt.list = false
opt.relativenumber = false opt.relativenumber = true
opt.cursorline = false

View file

@ -94,9 +94,9 @@ return {
layout_strategy = "center", layout_strategy = "center",
layout_config = { layout_config = {
prompt_position = "top", prompt_position = "top",
preview_cutoff = 1, -- Preview should always show (unless previewer = false) preview_cutoff = 5, -- Preview should always show (unless previewer = false)
width = function(_, max_columns, _) width = function(_, max_columns, _)
return math.min(max_columns, 80) return math.min(max_columns, 120)
end, end,
height = function(_, _, max_lines) height = function(_, _, max_lines)
return math.min(max_lines, 15) return math.min(max_lines, 15)

View file

@ -12,6 +12,10 @@
networking.hostName = "dragon"; # Define your hostname. networking.hostName = "dragon"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.extraHosts =
''
163.172.173.184 aleks-test-install-bookworm.test
'';
# Configure network proxy if necessary # Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";