Compare commits

..

10 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
AramJonghu fb24c7430b macchiato -> mocha 2026-06-05 00:29:31 +02:00
AramJonghu 9eab1602d0 multi-cursor 2026-06-04 22:48:04 +02:00
AramJonghu 4ff8b00b46 qmlformat added 2026-06-02 00:10:04 +02:00
AramJonghu 96caa99e91 no use odin for now 2026-05-27 22:01:35 +02:00
AramJonghu cae71c8c69 pyright back 2026-05-25 18:07:15 +02:00
AramJonghu 1443924f9b neoformat now detects powershell formatter 2026-05-22 00:39:45 +02:00
AramJonghu 82ffdf6ef4 eslint runs 2026-05-21 20:52:42 +02:00
AramJonghu 626a11d76f new bind 2026-05-21 17:59:26 +02:00
6 changed files with 40 additions and 6 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
+1 -5
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-macchiato]]
vim.cmd [[colorscheme catppuccin-mocha]]
+10 -1
View File
@@ -3,9 +3,11 @@ local cmp_cap = require("config.cmp").capabilities
local servers = {
"zls",
"ts_ls",
"eslint",
"yamlls",
"vimls",
"ruff",
"pyright",
"denols",
"lua_ls",
"qmlls",
@@ -21,7 +23,6 @@ local servers = {
"cssls",
"tailwindcss",
"jdtls",
"odinls",
"powershell_es",
"rust_analyzer",
}
@@ -49,3 +50,11 @@ vim.lsp.config("rust_analyzer", {
},
},
})
vim.lsp.config("eslint", {
settings = {
experimental = {
useFlatConfig = true,
},
},
})
+10
View File
@@ -1 +1,11 @@
let g:neoformat_enabled_yaml = ['prettierd']
let g:neoformat_ps1_psscriptanalyzer = {
\ 'exe': 'pwsh',
\ 'args': ['-NoProfile', '-Command',
\ '"Import-Module (Resolve-Path \"/opt/powershell-editor-services/PSScriptAnalyzer/*/PSScriptAnalyzer.psd1\" | Select-Object -ExpandProperty Path); Invoke-Formatter -ScriptDefinition (\$input | Out-String)"'],
\ 'stdin': 1,
\ }
let g:neoformat_enabled_ps1 = ['psscriptanalyzer']
let g:neoformat_enabled_qml = ['qmlformat']
+2
View File
@@ -14,6 +14,8 @@ map(
map("n", "<leader>fn", "<Cmd>Telescope find_files<CR>")
map("n", "<leader>ww", "<Cmd>lua vim.diagnostic.open_float()<CR>")
map({ "n", "v" }, "<leader>ap", require("actions-preview").code_actions)
map("n", "<Tab>", "<Cmd>BufferLineCycleNext<CR>")
+3
View File
@@ -1,4 +1,7 @@
return {
{
"mg979/vim-visual-multi",
},
{
"lewis6991/gitsigns.nvim",
config = function()