save
This commit is contained in:
@@ -1,2 +1,8 @@
|
|||||||
set breakpoint pending on
|
set breakpoint pending on
|
||||||
set disassembly-flavor intel
|
set disassembly-flavor intel
|
||||||
|
tui enable
|
||||||
|
lay src
|
||||||
|
|
||||||
|
define hook-stop
|
||||||
|
info locals
|
||||||
|
end
|
||||||
|
|||||||
@@ -18,7 +18,6 @@
|
|||||||
"nvim-lspconfig": { "branch": "master", "commit": "8121483b8132b7053120fafd83728178fb3febf6" },
|
"nvim-lspconfig": { "branch": "master", "commit": "8121483b8132b7053120fafd83728178fb3febf6" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "5740b7382429d20b6ed0bbdb0694185af9507d44" },
|
"nvim-web-devicons": { "branch": "master", "commit": "5740b7382429d20b6ed0bbdb0694185af9507d44" },
|
||||||
"oil.nvim": { "branch": "master", "commit": "c12fad2d225d8f81fadd48521d253607fe25465c" },
|
"oil.nvim": { "branch": "master", "commit": "c12fad2d225d8f81fadd48521d253607fe25465c" },
|
||||||
"orphans.nvim": { "branch": "main", "commit": "35f995fbb04b679b7d829072d7209a2117c15adf" },
|
|
||||||
"paint.nvim": { "branch": "main", "commit": "ef6f717a8669619ebbd098fb72f85115d64c6c92" },
|
"paint.nvim": { "branch": "main", "commit": "ef6f717a8669619ebbd098fb72f85115d64c6c92" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
|
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
|
||||||
"rose-pine": { "branch": "main", "commit": "91548dca53b36dbb9d36c10f114385f759731be1" },
|
"rose-pine": { "branch": "main", "commit": "91548dca53b36dbb9d36c10f114385f759731be1" },
|
||||||
|
|||||||
@@ -9,4 +9,5 @@ vim.filetype.add {
|
|||||||
|
|
||||||
require "vxclutch.set"
|
require "vxclutch.set"
|
||||||
require "vxclutch.lazy_init"
|
require "vxclutch.lazy_init"
|
||||||
|
vim.api.nvim_set_hl(0, "Function", { bold = false }) -- Must be called last.
|
||||||
require "vxclutch.remap"
|
require "vxclutch.remap"
|
||||||
|
|||||||
@@ -1,26 +1,35 @@
|
|||||||
local wezterm = require 'wezterm';
|
local wezterm = require "wezterm"
|
||||||
|
|
||||||
return {
|
local config = wezterm.config_builder()
|
||||||
keys = {
|
|
||||||
|
if wezterm.target_triple:find("windows") then
|
||||||
|
config.default_prog = { 'wsl.exe', '-d', 'Fedora', '--cd', '~' }
|
||||||
|
config.keys = {
|
||||||
{
|
{
|
||||||
key = 'F11',
|
key = 'F11',
|
||||||
mods = 'NONE',
|
mods = 'NONE',
|
||||||
action = wezterm.action.ToggleFullScreen,
|
action = wezterm.action.ToggleFullScreen,
|
||||||
},
|
},
|
||||||
},
|
}
|
||||||
hide_tab_bar_if_only_one_tab = true, -- Hide tab bar if there's only one tab
|
end
|
||||||
scrollback_lines = 10000,
|
|
||||||
|
|
||||||
-- Vague.nvim-inspired theme colors
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
color_scheme = "Vague", -- Assuming you have a color scheme named Vague
|
config.scrollback_lines = 10000
|
||||||
colors = {
|
config.window_padding = {
|
||||||
|
left = 0,
|
||||||
|
right = 0,
|
||||||
|
top = 0,
|
||||||
|
bottom = 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
config.color_scheme = "Vague"
|
||||||
|
config.colors = {
|
||||||
background = '#18191a',
|
background = '#18191a',
|
||||||
foreground = '#abb2bf',
|
foreground = '#abb2bf',
|
||||||
cursor_bg = '#61afef',
|
cursor_bg = '#61afef',
|
||||||
cursor_fg = '#282c34',
|
cursor_fg = '#282c34',
|
||||||
cursor_border = '#61afef',
|
cursor_border = '#61afef',
|
||||||
|
|
||||||
-- Modify the colors to use valid keys
|
|
||||||
ansi = {
|
ansi = {
|
||||||
'#282c34', -- black
|
'#282c34', -- black
|
||||||
'#e06c75', -- red
|
'#e06c75', -- red
|
||||||
@@ -41,10 +50,10 @@ return {
|
|||||||
'#56b6c2', -- bright cyan
|
'#56b6c2', -- bright cyan
|
||||||
'#ffffff', -- bright white
|
'#ffffff', -- bright white
|
||||||
},
|
},
|
||||||
},
|
|
||||||
|
|
||||||
-- Font settings (adjust as needed)
|
|
||||||
font = wezterm.font("JetBrains Mono"), -- Change this to your preferred font
|
|
||||||
font_size = 12.0, -- Adjust the font size
|
|
||||||
line_height = 1.2, -- Adjust the line height
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
config.font = wezterm.font("Iosevka Slab") -- Change this to your preferred font
|
||||||
|
config.font_size = 24.0 -- Adjust the font size
|
||||||
|
config.line_height = 1.2 -- Adjust the line height
|
||||||
|
|
||||||
|
return config
|
||||||
|
|||||||
Reference in New Issue
Block a user