diff --git a/data/backgrounds/mafu_trad_wall.png b/data/backgrounds/mafu_trad_wall.png new file mode 100644 index 0000000..f928caa Binary files /dev/null and b/data/backgrounds/mafu_trad_wall.png differ diff --git a/data/gitconfig b/data/gitconfig index aee78db..c6611b6 100644 --- a/data/gitconfig +++ b/data/gitconfig @@ -1,6 +1,6 @@ [user] - name = Petro Mozil - email = mozil.petryk@gmail.com + name = Petro Mozil + email = mozil.petryk@gmail.com [alias] ci = commit @@ -11,20 +11,20 @@ st = status logd = log --oneline --decorate -[url "ssh://git@gitlab.com/"] - insteadOf = https://gitlab.com/ - -[url "ssh://git@gitlab.freedesktop.org/"] - insteadOf = https://gitlab.freedesktop.org/ +; [url "ssh://git@gitlab.com/"] +; insteadOf = https://gitlab.com/ +; +; [url "ssh://git@gitlab.freedesktop.org/"] +; insteadOf = https://gitlab.freedesktop.org/ [url "ssh://git@github.com/"] - insteadOf = https://github.com/ + insteadOf = https://github.com/ [color] ui = auto [sendemail] - smtpserver = smtp.gmail.com - smtpuser = mozil.petryk@gmail.com - smtpencryption = ssl - smtpserverport = 465 + smtpserver = smtp.gmail.com + smtpuser = mozil.petryk@gmail.com + smtpencryption = ssl + smtpserverport = 465 diff --git a/data/nvim/configs/conform.lua b/data/nvim/configs/conform.lua index e4ac835..1776c02 100644 --- a/data/nvim/configs/conform.lua +++ b/data/nvim/configs/conform.lua @@ -1,6 +1,7 @@ require("conform").formatters["clang-format"] = { - command = "clang-gormat", + command = "clang-format", prepend_args = { "-style=file:" .. os.getenv("HOME") .. "/.config/clang-format/conf" }, + -- prepend_args = { "-style=file:~/.config/clang-format/conf" }, } require("conform").setup({ @@ -10,6 +11,7 @@ require("conform").setup({ cpp = { "clang-format" }, sh = { "shfmt" }, }, + format_on_save = { lsp_fallback = false, async = true, diff --git a/data/nvim/init.lua b/data/nvim/init.lua index 40e7dee..0caf775 100644 --- a/data/nvim/init.lua +++ b/data/nvim/init.lua @@ -40,3 +40,4 @@ end) -- vim.cmd(":source ~/.config/nvim/nvim_init.vim") require "configs.lspconfig" +-- require "configs.conform"