added more dotfiles

This commit is contained in:
2024-04-03 21:10:11 -04:00
parent a11c0ecab4
commit a9ee267075
7 changed files with 91 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# What protocol to use when performing git operations. Supported values: ssh, https
git_protocol: https
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
editor: micro
# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled
prompt: enabled
# A pager program to send command output to, e.g. "less". Set the value to "cat" to disable the pager.
pager:
# Aliases allow you to create nicknames for gh commands
aliases:
co: pr checkout
# The path to a unix socket through which send HTTP connections. If blank, HTTP traffic will be handled by net/http.DefaultTransport.
http_unix_socket:
# What web browser gh should use when opening URLs. If blank, will refer to environment.
browser:
version: "1"
+9
View File
@@ -0,0 +1,9 @@
{
"Alt-/": "lua:comment.comment",
"Alt-d": "command:definition",
"Alt-f": "command:format",
"Alt-k": "command:hover",
"Alt-r": "command:references",
"CtrlSpace": "command:lspcompletion",
"CtrlUnderscore": "lua:comment.comment"
}
+5
View File
@@ -0,0 +1,5 @@
{
"colorscheme": "catppuccin-frappe",
"softwrap": true,
"tabsize": 2
}
+3
View File
@@ -0,0 +1,3 @@
[font]
normal = { family = "Rec Mono Semicasual", style = "Regular" }
size = 14
+26
View File
@@ -0,0 +1,26 @@
# The Fuck settings file
#
# The rules are defined as in the example bellow:
#
# rules = ['cd_parent', 'git_push', 'python_command', 'sudo']
#
# The default values are as follows. Uncomment and change to fit your needs.
# See https://github.com/nvbn/thefuck#settings for more information.
#
# rules = [<const: All rules enabled>]
# exclude_rules = []
# wait_command = 3
# require_confirmation = True
# no_colors = False
# debug = False
# priority = {}
# history_limit = None
# alter_history = True
# wait_slow_command = 15
# slow_commands = ['lein', 'react-native', 'gradle', './gradlew', 'vagrant']
# repeat = False
# instant_mode = False
# num_close_matches = 3
# env = {'LC_ALL': 'C', 'LANG': 'C', 'GIT_TRACE': '1'}
# excluded_search_path_prefixes = []
View File
+32
View File
@@ -0,0 +1,32 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"features": {
"copilot": false
},
"theme": "Gruvbox Dark Soft",
"ui_font_family": "Rec Mono Semicasual",
"buffer_font_family": "Rec Mono Semicasual",
"ui_font_size": 17,
"buffer_font_size": 15,
"tab_size": 2,
"collaboration_panel": {
"button": false
},
"chat_panel": {
"button": false
},
"assistant": {
"button": false
},
"tabs": {
"git_status": true,
"close_position": "left"
}
}