1
0

9 Commits

3 changed files with 87 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`
+49
View File
@@ -0,0 +1,49 @@
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'
[editor.smart-tab]
enable = false
[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' }