1
0

5 Commits

Author SHA1 Message Date
Luminiferous 1b7facd068 Updated Padding for mmc.exe 2025-05-30 01:56:55 +02:00
Luminiferous c4c2885267 Added applications.json 2025-05-30 01:31:47 +02:00
Luminiferous 5bdd7499ce Updated app_specific_configuration_path 2025-05-30 01:24:31 +02:00
Luminiferous 7833cc3a00 Added KeePass.exe to ignore list 2025-05-27 14:24:35 +02:00
Luminiferous 997244e054 Added komorebi dotfiles 2025-05-24 16:13:47 +02:00
5 changed files with 3354 additions and 84 deletions
+3234
View File
File diff suppressed because it is too large Load Diff
-46
View File
@@ -1,46 +0,0 @@
theme = 'rose_pine'
[editor]
line-number = 'relative'
cursorline = true
auto-format = false
bufferline = 'multiple'
true-color = true
color-modes = true
end-of-line-diagnostics = 'hint'
[editor.statusline]
left = ['mode', 'spinner', 'spacer', 'version-control', 'spacer', 'separator', 'file-name', 'read-only-indicator', 'file-modification-indicator']
center = []
right = ['diagnostics', 'selections', 'register', 'file-line-ending', 'file-encoding', 'file-type', 'position', 'position-percentage']
separator = '│'
mode.normal = 'NORMAL'
mode.insert = 'INSERT'
mode.select = 'SELECT'
[editor.cursor-shape]
normal = 'block'
insert = 'bar'
select = 'underline'
[editor.whitespace.render]
space = 'all'
tab = 'all'
nbsp = 'all'
nnbsp = 'all'
[editor.indent-guides]
render = true
[editor.inline-diagnostics]
cursor-line = 'hint'
[keys.normal]
'F7' = 'goto_previous_buffer'
'F8' = 'goto_next_buffer'
X = 'select_line_above'
x = 'select_line_below'
[keys.select]
X = 'select_line_above'
x = 'select_line_below'
+73
View File
@@ -0,0 +1,73 @@
{
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.37/schema.bar.json",
"monitor": 0,
"font_family": "JetBrains Mono",
"theme": {
"palette": "Base16",
"name": "Ashes",
"accent": "Base0D"
},
"left_widgets": [
{
"Komorebi": {
"workspaces": {
"enable": true,
"hide_empty_workspaces": false
},
"layout": {
"enable": true
},
"focused_window": {
"enable": true,
"show_icon": true
}
}
}
],
"right_widgets": [
{
"Update": {
"enable": true
}
},
{
"Media": {
"enable": true
}
},
{
"Storage": {
"enable": true
}
},
{
"Memory": {
"enable": true
}
},
{
"Network": {
"enable": true,
"show_total_data_transmitted": true,
"show_network_activity": true
}
},
{
"Date": {
"enable": true,
"format": "DayDateMonthYear"
}
},
{
"Time": {
"enable": true,
"format": "TwentyFourHour"
}
},
{
"Battery": {
"enable": true
}
}
]
}
+47
View File
@@ -0,0 +1,47 @@
{
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.37/schema.json",
"app_specific_configuration_path": "$Env:KOMOREBI_CONFIG_HOME/applications.json",
"window_hiding_behaviour": "Cloak",
"cross_monitor_move_behaviour": "Insert",
"default_workspace_padding": 5,
"default_container_padding": -1,
"border": true,
"border_width": 6,
"border_offset": -1,
"theme": {
"palette": "Base16",
"name": "Ashes",
"unfocused_border": "Base03",
"bar_accent": "Base0D"
},
"stackbar": {
"height": 40,
"mode": "OnStack",
"tabs": {
"width": 300,
"focused_text": "#00a542",
"unfocused_text": "#b3b3b3",
"background": "#141414"
},
},
"mouse_follows_focus": false,
"ignore_rules": [
{
"kind": "Exe",
"id": "vmconnect.exe",
"matching_strategy": "Equals"
},
{
"kind": "Exe",
"id": "KeePass.exe",
"matching_strategy": "Equals"
}
],
"object_name_change_applications": [
{
"kind": "Exe",
"id": "dopus.exe",
"matching_strategy": "Equals"
}
]
}
-38
View File
@@ -1,38 +0,0 @@
[[language]]
name = 'powershell'
scope = 'source.ps1'
file-types = ['ps1', 'psm1']
roots = ['.git']
comment-token = '#'
indent = { tab-width = 4, unit = '\t' }
language-servers = [ 'powershell-editor-services' ]
[language-server.powershell-editor-services]
name = 'powershell-editor-services'
transport = 'stdio'
command = 'pwsh'
args = ['-NoLogo', '-NoProfile', '-Command', 'C:\\PowerShellEditorServices\\PowerShellEditorServices\\Start-EditorServices.ps1 -SessionDetailsPath C:\\PowerShellEditorServices\\PowerShellEditorServices.sessions.lsp.json -LanguageServiceOnly -Stdio']
[language.debugger]
name = 'powershell-editor-services'
transport = 'stdio'
command = 'pwsh'
args = ['-NoLogo', '-NoProfile', '-Command', 'C:\\PowerShellEditorServices\\PowerShellEditorServices\\Start-EditorServices.ps1 -SessionDetailsPath C:\\PowerShellEditorServices\\PowerShellEditorServices.sessions.dap.json -DebugServiceOnly -Stdio']
[[language.debugger.templates]]
name = 'Attach to existing Powershell Process'
request = 'attach'
completion = [ 'PID' ]
args = { processId = '{0}', runspaceId = '1' }
[[language.debugger.templates]]
name = 'Launch Script (Script runs in Background)'
request = 'launch'
completion = [ 'Full Script Path' ]
args = { script = '{0}', runspaceId = '1' }
#---
[[language]]
name = 'bash'
indent = { tab-width = 4, unit = '\t' }