Files
neovim-configuration/init.lua
Lüdecke Sascha e9a0809911 stopwatch update
2026-07-23 10:18:27 +02:00

23 lines
584 B
Lua

-- adjust proxy on Windows
if vim.loop.os_environ().OS == 'Windows_NT' then
-- TODO move out of the tree and do not check in
vim.fn.setenv("http_proxy", "http://10.167.16.21:80")
vim.fn.setenv("https_proxy", "http://10.167.16.21:80")
end
-- load configurations files from lua/*
require('filetype')
require('options')
require('functions')
require('plugins')
require('colorscheme')
require('lsp')
require('keybindings')
require('layout')
require('stopwatch').setup({ big_display = true, update_ms = 1000 })
if vim.loop.os_gethostname() == 'slaptop' then
require('diary')
end