29 lines
1.2 KiB
Lua
29 lines
1.2 KiB
Lua
require("bootstrap")
|
|
require("plugins")
|
|
require("config.lsp")
|
|
require("config.winsep")
|
|
require("config.bindings")
|
|
require("ui.status")
|
|
require("ui.highlight")
|
|
|
|
--{{{ vim cmd
|
|
vim.cmd(":set showtabline=2")
|
|
vim.cmd(":set ignorecase")
|
|
vim.cmd(":set smartcase")
|
|
vim.cmd(":set number")
|
|
vim.cmd(":set clipboard+=unnamedplus")
|
|
vim.cmd(":set relativenumber")
|
|
vim.cmd(":set foldmethod=marker")
|
|
vim.opt.fillchars:append { eob = " " }
|
|
--}}}
|
|
|
|
vim.g.rust_recommended_style = '0' --why the fuck does a fucking _editor_ believe it has the right to overwrite MY settings?
|
|
--like i just wanted to fuck around with this language once, so why do i have to tell the editor
|
|
--to respect the settings i have already set?
|
|
--um aktsthually the user doesnt know what they want, better have them jump through this shitty hoop.
|
|
--or is it that you believe the user is incorrect?
|
|
--so trying this language once means i have to keep this shit smear in my configs at all times?
|
|
--is rust the only language or do i have to check every single language i may ever interact?
|
|
--do i have try out every feature to make sure youre not dismissing my decissions?
|
|
--who shat in your brain
|