Compare commits

...
2 Commits
Author SHA1 Message Date
AramJonghu 0dc34abcc0 leftover removed 2026-06-06 22:52:46 +02:00
AramJonghu fd7a0daede missing files in commit 2026-06-06 22:48:55 +02:00
2 changed files with 14 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
function! neoformat#formatters#qml#enabled() abort
return ['qmlformat']
endfunction
function! neoformat#formatters#qml#qmlformat() abort
return {
\ 'exe': '/usr/lib/qt6/bin/qmlformat',
\ 'args': ['-t', '-n', '--objects-spacing', '--functions-spacing', '-i'],
\ 'replace': 1,
\ 'stderr': 1,
\ 'stdin': 0
\ }
endfunction
-4
View File
@@ -6,8 +6,4 @@ require "autocmd"
vim.cmd "source ~/.config/nvim/suda.vim"
-- local time = tonumber(os.date "%H")
vim.filetype.add {
pattern = { [".*/hypr/.*%.conf"] = "hyprlang", [".*/uwsm/env.*"] = "zsh" },
}
vim.cmd [[colorscheme catppuccin-mocha]]