1
0

7 Commits

Author SHA1 Message Date
Luminiferous 4d0ea8c95f Added the ability to deselect lines/select lines upwards with x 2025-05-24 16:33:23 +02:00
Luminiferous 1a2e28c2e3 Set Indent Style for bash 2025-05-24 16:33:23 +02:00
Luminiferous 31e18db9c1 Added Indent Guides 2025-05-24 16:33:23 +02:00
Luminiferous 850fc1dec0 Added PowerShell DAP 2025-05-24 16:33:23 +02:00
Luminiferous 317a2ba4a3 Fixed Indention Style 2025-05-24 16:33:23 +02:00
Luminiferous 0e7532d8e8 Added colortheme and fixed statusbar 2025-05-24 16:33:23 +02:00
Luminiferous 4cb65db0eb Initial Commit 2025-05-24 16:33:23 +02:00
3 changed files with 84 additions and 4 deletions
-4
View File
@@ -1,4 +0,0 @@
# Luminiferous Dotfiles
All dotfiles are in their respective Branches.
Pull with `git clone -b <branch> --single-branch https://git.luminiferous.eu/Luminiferous/dotfiles.git`
+46
View File
@@ -0,0 +1,46 @@
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'
+38
View File
@@ -0,0 +1,38 @@
[[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' }