Compare commits
No commits in common. "9bb1566180baedf067200bff36ecdaa8d12ef6a3" and "8d79b104a5a69fc4abc1df9611a6beb0e0c19ea3" have entirely different histories.
9bb1566180
...
8d79b104a5
3 changed files with 4 additions and 9 deletions
|
@ -2,9 +2,8 @@
|
|||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||
-- Add any additional options here
|
||||
local opt = vim.opt
|
||||
opt.scrolloff = 9
|
||||
opt.scrolloff = 8
|
||||
opt.wrap = true
|
||||
opt.clipboard = "unnamedplus"
|
||||
opt.list = false
|
||||
opt.relativenumber = true
|
||||
opt.cursorline = false
|
||||
opt.relativenumber = false
|
||||
|
|
|
@ -94,9 +94,9 @@ return {
|
|||
layout_strategy = "center",
|
||||
layout_config = {
|
||||
prompt_position = "top",
|
||||
preview_cutoff = 5, -- Preview should always show (unless previewer = false)
|
||||
preview_cutoff = 1, -- Preview should always show (unless previewer = false)
|
||||
width = function(_, max_columns, _)
|
||||
return math.min(max_columns, 120)
|
||||
return math.min(max_columns, 80)
|
||||
end,
|
||||
height = function(_, _, max_lines)
|
||||
return math.min(max_lines, 15)
|
||||
|
|
|
@ -12,10 +12,6 @@
|
|||
|
||||
networking.hostName = "dragon"; # Define your hostname.
|
||||
# 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
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
|
|
Loading…
Add table
Reference in a new issue