Minimal dotfiles for london.

This commit is contained in:
Gabriel Simmer 2021-02-18 13:21:20 +00:00
parent cb0407408f
commit 7cf90760bf
5 changed files with 135 additions and 0 deletions

View file

@ -0,0 +1,27 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator.
window:
dimensions:
columns: 120
lines: 35
font:
normal:
family: "IBM Plex Mono"
style: Regular
size: 12.0
# Attempting to use Monokai Pro palette where possible.
colors:
# Default colors
primary:
background: '0x212121'
foreground: '0xfcfcfa'
cursor:
style: Block
unfocused_hollow: false
# Live config reload (changes require restart)
live_config_reload: true

View file

@ -0,0 +1,45 @@
add_newline = true
format = """
[ $username$hostname](bold green)
[](bold green) $directory\
$git_status$git_branch\
$golang$python$rust
[ $character](bold green)"""
[character]
success_symbol = "[𝝺](bold green)"
error_symbol = "[𝝺](bold red)"
[username]
format = "$user"
disabled = false
show_always = true
[git_branch]
format = "[$symbol$branch]($style) "
style = "bold yellow"
[git_status]
disabled = false
# configure directory
[directory]
truncation_length = 3
truncate_to_repo = false
style = "bold italic #87A752"
[hostname]
ssh_only = false
format = "@$hostname"
disabled = false
[golang]
format = "[\\(go $version\\)](bold cyan)"
[python]
format = "[\\(python $version\\)](bold green)"
[rust]
format = "[\\(rust $version\\)](bold red)"

View file

@ -0,0 +1,11 @@
// Settings in here override those in "LSP/LSP.sublime-settings"
{
"clients": {
"pyls": {
"command": ["pipenv", "run", "pyls"],
"scopes": ["source.python"],
"syntaxes": ["Packages/Python/Python.sublime-syntax", "Packages/MagicPython/grammars/MagicPython.tmLanguage", "Packages/Djaneiro/Syntaxes/Python Django.tmLanguage"],
"languageId": "python"
}
}
}

View file

@ -0,0 +1,29 @@
{
"bootstrapped": true,
"debug": true,
"in_process_packages":
[
],
"installed_packages":
[
"Bats",
"Dockerfile Syntax Highlighting",
"Emmet",
"GitGutter",
"HexViewer",
"JSX",
"LSP",
"LSP-bash",
"LSP-typescript",
"LSP-yaml",
"Markdown Extended",
"Package Control",
"Rust Enhanced",
"SideBarEnhancements",
"SublimeCodeIntel",
"Terraform",
"Theme - Monokai Pro",
"TOML",
"TypeScript"
]
}

View file

@ -0,0 +1,23 @@
{
"auto_complete_delay": 20,
"color_scheme": "Monokai Pro (Filter Spectrum).sublime-color-scheme",
"font_face": "IBM Plex Mono",
"font_size": 12,
"ignored_packages":
[
"Rust",
"Vintage"
],
"monokai_pro_file_icons": true,
"monokai_pro_highlight_open_folders": true,
"monokai_pro_minimal": true,
"monokai_pro_sidebar_headings": true,
"monokai_pro_style_title_bar": true,
"monokai_pro_ui_font_face": "IBM Plex Mono",
"rulers":
[
80
],
"scroll_past_end": false,
"theme": "Monokai Pro (Filter Spectrum).sublime-theme"
}