nixpkgs 25.05 🎉
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
y.fraction = 0.3;
|
||||
width.fraction = 0.25;
|
||||
plugins = [
|
||||
inputs.anyrun.packages.${pkgs.system}.applications
|
||||
"${pkgs.anyrun}/lib/libapplications.so"
|
||||
];
|
||||
hidePluginInfo = true;
|
||||
closeOnClick = true;
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
"Amazon.com".metaData.hidden = true;
|
||||
"Bing".metaData.hidden = true;
|
||||
"Wikipedia (en)".metaData.hidden = true;
|
||||
"Google".metaData.alias = "gg";
|
||||
"DuckDuckGo".metaData.alias = "dd";
|
||||
"amazondotcom-us".metaData.hidden = true;
|
||||
"bing".metaData.hidden = true;
|
||||
"wikipedia".metaData.hidden = true;
|
||||
"google".metaData.alias = "gg";
|
||||
"ddg".metaData.alias = "dd";
|
||||
|
||||
"Arch Package Repository" = {
|
||||
urls = [{
|
||||
@@ -166,7 +166,7 @@
|
||||
definedAliases = [ "ut" ];
|
||||
};
|
||||
|
||||
"YouTube" = {
|
||||
"youtube" = {
|
||||
urls = [{
|
||||
template = "https://www.youtube.com/results";
|
||||
params = [{ name = "search_query"; value = "{searchTerms}"; }];
|
||||
|
||||
@@ -3,13 +3,16 @@
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
profiles.h7x4 = {
|
||||
bookmarks = [{
|
||||
toolbar = true;
|
||||
bookmarks = import ./browser/bookmarks.nix;
|
||||
}];
|
||||
bookmarks = {
|
||||
force = true;
|
||||
settings = [{
|
||||
toolbar = true;
|
||||
bookmarks = import ./browser/bookmarks.nix;
|
||||
}];
|
||||
};
|
||||
|
||||
search = {
|
||||
default = "Google";
|
||||
default = "google";
|
||||
engines = import ./browser/engines.nix { inherit pkgs lib; };
|
||||
force = true;
|
||||
};
|
||||
|
||||
@@ -21,5 +21,5 @@
|
||||
set prompt \001\033[1;36m\002(gdb) \001\033[0m\002
|
||||
'';
|
||||
|
||||
local.shell.aliases."System Tool Replacements".gdb = "${pkgs.pwndbg}/bin/pwndbg";
|
||||
# local.shell.aliases."System Tool Replacements".gdb = "${pkgs.pwndbg}/bin/pwndbg";
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
pinentryPackage = pkgs.pinentry-curses;
|
||||
pinentry.package = pkgs.pinentry-curses;
|
||||
enableExtraSocket = true;
|
||||
enableSshSupport = true;
|
||||
enableScDaemon = true;
|
||||
|
||||
@@ -37,332 +37,334 @@ in
|
||||
'';
|
||||
});
|
||||
|
||||
userSettings = let
|
||||
editor = mapPrefixToSet "editor" {
|
||||
fontFamily = "Fira Code";
|
||||
fontLigatures = true;
|
||||
lineNumbers = "relative";
|
||||
mouseWheelZoom = false;
|
||||
fontSize = 14;
|
||||
"minimap.enabled" = false;
|
||||
tabSize = 2;
|
||||
insertSpaces = true;
|
||||
"inlineSuggest.enabled" = true;
|
||||
"inlayHints.enabled" = "offUnlessPressed";
|
||||
detectIndentation = false;
|
||||
tabCompletion = "onlySnippets";
|
||||
snippetSuggestions = "top";
|
||||
cursorBlinking = "smooth";
|
||||
cursorSmoothCaretAnimation = "on";
|
||||
multiCursorModifier = "ctrlCmd";
|
||||
suggestSelection = "first";
|
||||
cursorStyle = "line";
|
||||
wordSeparators = "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-";
|
||||
wordWrap = "off";
|
||||
# "bracketPairColorization.enabled" = true;
|
||||
};
|
||||
|
||||
zen = mapPrefixToSet "zenMode" {
|
||||
centerLayout = true;
|
||||
hideStatusBar = false;
|
||||
hideLineNumbers = false;
|
||||
};
|
||||
|
||||
vim = mapPrefixToSet "vim" {
|
||||
useSystemClipboard = true;
|
||||
"statusBarColorControl" = true;
|
||||
"statusBarColors.insert" = "#20ff00";
|
||||
"statusBarColors.normal" = "#1D1E20";
|
||||
"statusBarColors.visual" = "#00ffff";
|
||||
"statusBarColors.replace" = "#ff002b";
|
||||
handleKeys = {
|
||||
"<C-d>" = true;
|
||||
"<C-j>" = false;
|
||||
"<C-b>" = false;
|
||||
"<C-k>" = false;
|
||||
"<C-w>" = false;
|
||||
"<C-n>" = false;
|
||||
"<A-o>" = true;
|
||||
profiles.default = {
|
||||
userSettings = let
|
||||
editor = mapPrefixToSet "editor" {
|
||||
fontFamily = "Fira Code";
|
||||
fontLigatures = true;
|
||||
lineNumbers = "relative";
|
||||
mouseWheelZoom = false;
|
||||
fontSize = 14;
|
||||
"minimap.enabled" = false;
|
||||
tabSize = 2;
|
||||
insertSpaces = true;
|
||||
"inlineSuggest.enabled" = true;
|
||||
"inlayHints.enabled" = "offUnlessPressed";
|
||||
detectIndentation = false;
|
||||
tabCompletion = "onlySnippets";
|
||||
snippetSuggestions = "top";
|
||||
cursorBlinking = "smooth";
|
||||
cursorSmoothCaretAnimation = "on";
|
||||
multiCursorModifier = "ctrlCmd";
|
||||
suggestSelection = "first";
|
||||
cursorStyle = "line";
|
||||
wordSeparators = "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-";
|
||||
wordWrap = "off";
|
||||
# "bracketPairColorization.enabled" = true;
|
||||
};
|
||||
};
|
||||
|
||||
workbench = mapPrefixToSet "workbench" {
|
||||
"settings.enableNaturalLanguageSearch" = false;
|
||||
enableExperiments = false;
|
||||
iconTheme = "material-icon-theme";
|
||||
colorTheme = "Monokai ST3";
|
||||
colorCustomizations = {
|
||||
"statusBar.background" = "#1D1E20";
|
||||
"statusBar.noFolderBackground" = "#1D1E20";
|
||||
"statusBar.debuggingBackground" = "#1D1E20";
|
||||
"[Monokai ST3]" = {
|
||||
"editor.foreground" = "#ffffff";
|
||||
zen = mapPrefixToSet "zenMode" {
|
||||
centerLayout = true;
|
||||
hideStatusBar = false;
|
||||
hideLineNumbers = false;
|
||||
};
|
||||
|
||||
vim = mapPrefixToSet "vim" {
|
||||
useSystemClipboard = true;
|
||||
"statusBarColorControl" = true;
|
||||
"statusBarColors.insert" = "#20ff00";
|
||||
"statusBarColors.normal" = "#1D1E20";
|
||||
"statusBarColors.visual" = "#00ffff";
|
||||
"statusBarColors.replace" = "#ff002b";
|
||||
handleKeys = {
|
||||
"<C-d>" = true;
|
||||
"<C-j>" = false;
|
||||
"<C-b>" = false;
|
||||
"<C-k>" = false;
|
||||
"<C-w>" = false;
|
||||
"<C-n>" = false;
|
||||
"<A-o>" = true;
|
||||
};
|
||||
};
|
||||
editorAssociations = {
|
||||
"*.pdf" = "default";
|
||||
"*.ipynb" = "jupyter.notebook.ipynb";
|
||||
|
||||
workbench = mapPrefixToSet "workbench" {
|
||||
"settings.enableNaturalLanguageSearch" = false;
|
||||
enableExperiments = false;
|
||||
iconTheme = "material-icon-theme";
|
||||
colorTheme = "Monokai ST3";
|
||||
colorCustomizations = {
|
||||
"statusBar.background" = "#1D1E20";
|
||||
"statusBar.noFolderBackground" = "#1D1E20";
|
||||
"statusBar.debuggingBackground" = "#1D1E20";
|
||||
"[Monokai ST3]" = {
|
||||
"editor.foreground" = "#ffffff";
|
||||
};
|
||||
};
|
||||
editorAssociations = {
|
||||
"*.pdf" = "default";
|
||||
"*.ipynb" = "jupyter.notebook.ipynb";
|
||||
};
|
||||
};
|
||||
|
||||
python = mapPrefixToSet "python" {
|
||||
"analysis.completeFunctionParens" = true;
|
||||
"formatting.provider" = "yapf";
|
||||
"formatting.yapfArgs" = [
|
||||
"--style={based_on_style: pep8, indent_width: 2}"
|
||||
];
|
||||
"autoComplete.addBrackets" = true;
|
||||
languageServer = "Pylance";
|
||||
};
|
||||
|
||||
svg = mapPrefixToSet "svgviewer" {
|
||||
transparencygrid = true;
|
||||
enableautopreview = true;
|
||||
previewcolumn = "Beside";
|
||||
showzoominout = true;
|
||||
};
|
||||
|
||||
indentRainbow = mapPrefixToSet "indentRainbow" {
|
||||
errorColor= "rgb(255, 0, 0)";
|
||||
colors = [ # http://colrd.com/palette/38436/
|
||||
"rgba(26, 19, 52, 0.1)"
|
||||
"rgba(1, 84, 90, 0.1)"
|
||||
"rgba(3, 195, 131, 0.1)"
|
||||
"rgba(251, 191, 69, 0.1)"
|
||||
"rgba(237, 3, 69, 0.1)"
|
||||
"rgba(113, 1, 98, 0.1)"
|
||||
"rgba(2, 44, 125, 0.1)"
|
||||
"rgba(38, 41, 74, 0.1)"
|
||||
"rgba(1, 115, 81, 0.1)"
|
||||
"rgba(170, 217, 98, 0.1)"
|
||||
"rgba(239, 106, 50, 0.1)"
|
||||
"rgba(161, 42, 94, 0.1)"
|
||||
];
|
||||
ignoreErrorLanguages = [
|
||||
"markdown"
|
||||
"haskell"
|
||||
"elm"
|
||||
"fsharp"
|
||||
"java"
|
||||
];
|
||||
};
|
||||
|
||||
in
|
||||
editor //
|
||||
indentRainbow //
|
||||
python //
|
||||
svg //
|
||||
workbench //
|
||||
vim // # This needs to come after workbench because of setting ordering
|
||||
zen //
|
||||
{
|
||||
"extensions.autoCheckUpdates" = false;
|
||||
"extensions.autoUpdate" = false;
|
||||
"diffEditor.ignoreTrimWhitespace" = false;
|
||||
"diffEditor.hideUnchangedRegions" = "enabled";
|
||||
"emmet.triggerExpansionOnTab" = true;
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
"git.allowForcePush" = true;
|
||||
"git.autofetch" = true;
|
||||
"telemetry.telemetryLevel" = "off";
|
||||
"terminal.integrated.fontSize" = 14;
|
||||
"vsintellicode.modify.editor.suggestSelection" = "automaticallyOverrodeDefaultValue";
|
||||
"keyboard.dispatch" = "keyCode";
|
||||
"window.zoomLevel" = 1;
|
||||
|
||||
"search.exclude" = {
|
||||
"**/node_modules" = true;
|
||||
"**/bower_components" = true;
|
||||
"**/*.code-search" = true;
|
||||
"**/.direnv/" = true;
|
||||
};
|
||||
|
||||
# This setting does not support language overrides
|
||||
"files.exclude" = {
|
||||
# Java
|
||||
"**/.classpath" = true;
|
||||
"**/.project" = true;
|
||||
"**/.settings" = true;
|
||||
"**/.factorypath" = true;
|
||||
};
|
||||
|
||||
# Extensions
|
||||
|
||||
"bracket-pair-colorizer-2.colorMode" = "Consecutive";
|
||||
"bracket-pair-colorizer-2.forceIterationColorCycle" = true;
|
||||
"bracket-pair-colorizer-2.colors" = [
|
||||
"#fff200"
|
||||
"#3d33ff"
|
||||
"#ff57d5"
|
||||
"#00ff11"
|
||||
"#ff8400"
|
||||
"#ff0030"
|
||||
];
|
||||
|
||||
"errorLens.errorBackground" = "rgba(240,0,0,0.1)";
|
||||
"errorLens.warningBackground" = "rgba(180,180,0,0.1)";
|
||||
|
||||
"liveshare.presence" = true;
|
||||
"liveshare.showInStatusBar" = "whileCollaborating";
|
||||
|
||||
"liveServer.settings.port" = 5500;
|
||||
|
||||
"material-icon-theme.folders.associations" = {
|
||||
ui = "layout";
|
||||
bloc = "controller";
|
||||
};
|
||||
|
||||
"redhat.telemetry.enabled" = false;
|
||||
|
||||
"[html]" = {
|
||||
"editor.formatOnSave" = false;
|
||||
"editor.defaultFormatter" = "vscode.html-language-features";
|
||||
};
|
||||
|
||||
"[javascript]" = {
|
||||
"editor.formatOnSave" = false;
|
||||
"editor.defaultFormatter" = "vscode.typescript-language-features";
|
||||
};
|
||||
|
||||
"[json]" = {
|
||||
"editor.formatOnSave" = true;
|
||||
"editor.defaultFormatter" = "vscode.json-language-features";
|
||||
};
|
||||
|
||||
"[jsonc]" = {
|
||||
"editor.defaultFormatter" = "vscode.json-language-features";
|
||||
};
|
||||
};
|
||||
|
||||
python = mapPrefixToSet "python" {
|
||||
"analysis.completeFunctionParens" = true;
|
||||
"formatting.provider" = "yapf";
|
||||
"formatting.yapfArgs" = [
|
||||
"--style={based_on_style: pep8, indent_width: 2}"
|
||||
];
|
||||
"autoComplete.addBrackets" = true;
|
||||
languageServer = "Pylance";
|
||||
};
|
||||
keybindings = [
|
||||
{
|
||||
key = "alt+k";
|
||||
when = "codeActionMenuVisible";
|
||||
command = "selectPrevCodeAction";
|
||||
}
|
||||
|
||||
svg = mapPrefixToSet "svgviewer" {
|
||||
transparencygrid = true;
|
||||
enableautopreview = true;
|
||||
previewcolumn = "Beside";
|
||||
showzoominout = true;
|
||||
};
|
||||
{
|
||||
key = "alt+j";
|
||||
when = "codeActionMenuVisible";
|
||||
command = "selectNextCodeAction";
|
||||
}
|
||||
|
||||
indentRainbow = mapPrefixToSet "indentRainbow" {
|
||||
errorColor= "rgb(255, 0, 0)";
|
||||
colors = [ # http://colrd.com/palette/38436/
|
||||
"rgba(26, 19, 52, 0.1)"
|
||||
"rgba(1, 84, 90, 0.1)"
|
||||
"rgba(3, 195, 131, 0.1)"
|
||||
"rgba(251, 191, 69, 0.1)"
|
||||
"rgba(237, 3, 69, 0.1)"
|
||||
"rgba(113, 1, 98, 0.1)"
|
||||
"rgba(2, 44, 125, 0.1)"
|
||||
"rgba(38, 41, 74, 0.1)"
|
||||
"rgba(1, 115, 81, 0.1)"
|
||||
"rgba(170, 217, 98, 0.1)"
|
||||
"rgba(239, 106, 50, 0.1)"
|
||||
"rgba(161, 42, 94, 0.1)"
|
||||
];
|
||||
ignoreErrorLanguages = [
|
||||
"markdown"
|
||||
"haskell"
|
||||
"elm"
|
||||
"fsharp"
|
||||
"java"
|
||||
];
|
||||
};
|
||||
{
|
||||
key = "alt+k";
|
||||
command = "selectPrevSuggestion";
|
||||
when = "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus";
|
||||
}
|
||||
|
||||
in
|
||||
editor //
|
||||
indentRainbow //
|
||||
python //
|
||||
svg //
|
||||
workbench //
|
||||
vim // # This needs to come after workbench because of setting ordering
|
||||
zen //
|
||||
{
|
||||
"extensions.autoCheckUpdates" = false;
|
||||
"extensions.autoUpdate" = false;
|
||||
"diffEditor.ignoreTrimWhitespace" = false;
|
||||
"diffEditor.hideUnchangedRegions" = "enabled";
|
||||
"emmet.triggerExpansionOnTab" = true;
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
"git.allowForcePush" = true;
|
||||
"git.autofetch" = true;
|
||||
"telemetry.telemetryLevel" = "off";
|
||||
"terminal.integrated.fontSize" = 14;
|
||||
"vsintellicode.modify.editor.suggestSelection" = "automaticallyOverrodeDefaultValue";
|
||||
"keyboard.dispatch" = "keyCode";
|
||||
"window.zoomLevel" = 1;
|
||||
{
|
||||
key = "alt+j";
|
||||
command = "selectNextSuggestion";
|
||||
when = "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus";
|
||||
}
|
||||
|
||||
"search.exclude" = {
|
||||
"**/node_modules" = true;
|
||||
"**/bower_components" = true;
|
||||
"**/*.code-search" = true;
|
||||
"**/.direnv/" = true;
|
||||
};
|
||||
{
|
||||
key = "alt+k";
|
||||
command = "editor.action.moveLinesUpAction";
|
||||
when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible";
|
||||
}
|
||||
|
||||
# This setting does not support language overrides
|
||||
"files.exclude" = {
|
||||
# Java
|
||||
"**/.classpath" = true;
|
||||
"**/.project" = true;
|
||||
"**/.settings" = true;
|
||||
"**/.factorypath" = true;
|
||||
};
|
||||
{
|
||||
key = "alt+j";
|
||||
command = "editor.action.moveLinesDownAction";
|
||||
when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible";
|
||||
}
|
||||
|
||||
# Extensions
|
||||
{
|
||||
key = "alt+j";
|
||||
command = "workbench.action.quickOpenNavigateNext";
|
||||
when = "inQuickOpen";
|
||||
}
|
||||
|
||||
"bracket-pair-colorizer-2.colorMode" = "Consecutive";
|
||||
"bracket-pair-colorizer-2.forceIterationColorCycle" = true;
|
||||
"bracket-pair-colorizer-2.colors" = [
|
||||
"#fff200"
|
||||
"#3d33ff"
|
||||
"#ff57d5"
|
||||
"#00ff11"
|
||||
"#ff8400"
|
||||
"#ff0030"
|
||||
{
|
||||
key = "alt+k";
|
||||
command = "workbench.action.quickOpenNavigatePrevious";
|
||||
when = "inQuickOpen";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+f";
|
||||
command = "editor.action.formatDocument";
|
||||
when = "editorTextFocus && !editorReadonly";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+o";
|
||||
command = "editor.action.insertLineAfter";
|
||||
when = "textInputFocus && !editorReadonly";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+shift+o";
|
||||
command = "editor.action.insertLineBefore";
|
||||
when = "textInputFocus && !editorReadonly";
|
||||
}
|
||||
];
|
||||
|
||||
"errorLens.errorBackground" = "rgba(240,0,0,0.1)";
|
||||
"errorLens.warningBackground" = "rgba(180,180,0,0.1)";
|
||||
|
||||
"liveshare.presence" = true;
|
||||
"liveshare.showInStatusBar" = "whileCollaborating";
|
||||
|
||||
"liveServer.settings.port" = 5500;
|
||||
|
||||
"material-icon-theme.folders.associations" = {
|
||||
ui = "layout";
|
||||
bloc = "controller";
|
||||
};
|
||||
|
||||
"redhat.telemetry.enabled" = false;
|
||||
|
||||
"[html]" = {
|
||||
"editor.formatOnSave" = false;
|
||||
"editor.defaultFormatter" = "vscode.html-language-features";
|
||||
};
|
||||
|
||||
"[javascript]" = {
|
||||
"editor.formatOnSave" = false;
|
||||
"editor.defaultFormatter" = "vscode.typescript-language-features";
|
||||
};
|
||||
|
||||
"[json]" = {
|
||||
"editor.formatOnSave" = true;
|
||||
"editor.defaultFormatter" = "vscode.json-language-features";
|
||||
};
|
||||
|
||||
"[jsonc]" = {
|
||||
"editor.defaultFormatter" = "vscode.json-language-features";
|
||||
};
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
# WakaTime.vscode-wakatime
|
||||
# dotjoshjohnson.xml
|
||||
# eamodio.gitlens
|
||||
# jock.svg
|
||||
# ms-azuretools.vscode-docker
|
||||
# ms-toolsai.jupyter
|
||||
# ms-vscode-remote.remote-ssh
|
||||
# ms-vsliveshare.vsliveshare
|
||||
bbenoist.nix
|
||||
christian-kohler.path-intellisense
|
||||
# coenraads.bracket-pair-colorizer-2
|
||||
haskell.haskell
|
||||
justusadam.language-haskell
|
||||
justusadam.language-haskell
|
||||
mechatroner.rainbow-csv
|
||||
mhutchie.git-graph
|
||||
ms-python.python
|
||||
ms-python.vscode-pylance
|
||||
ms-vscode-remote.remote-ssh
|
||||
naumovs.color-highlight
|
||||
oderwat.indent-rainbow
|
||||
pkief.material-icon-theme
|
||||
redhat.vscode-yaml
|
||||
shardulm94.trailing-spaces
|
||||
usernamehw.errorlens
|
||||
rust-lang.rust-analyzer
|
||||
mkhl.direnv
|
||||
waderyan.gitblame
|
||||
vscodevim.vim
|
||||
hbenl.vscode-test-explorer
|
||||
# vitaliymaz.vscode-svg-previewer
|
||||
ms-vscode.test-adapter-converter
|
||||
visualstudioexptteam.vscodeintellicode
|
||||
tamasfe.even-better-toml
|
||||
maximedenes.vscoq
|
||||
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
{
|
||||
name = "monokai-st3";
|
||||
publisher = "AndreyVolosovich";
|
||||
version = "0.2.0";
|
||||
sha256 = "1rvz5hlrfshy9laybxzvrdklx328s13j0lb8ljbda9zkadi3wcad";
|
||||
}
|
||||
{
|
||||
name = "comment-anchors";
|
||||
publisher = "ExodiusStudios";
|
||||
version = "1.10.4";
|
||||
sha256 = "sha256-FvfjPpQsgCsnY1BylhLCM/qDQChf9/iTr3cKkCGfMVI=";
|
||||
}
|
||||
{
|
||||
name = "vscode-gutter-preview";
|
||||
publisher = "kisstkondoros";
|
||||
version = "0.31.2";
|
||||
sha256 = "sha256-2/RvDSsVL06UmNG9HchXaJMJ4FYtnpuJ2Bn53JVv1t8=";
|
||||
}
|
||||
{
|
||||
name = "keyboard-quickfix";
|
||||
publisher = "pascalsenn";
|
||||
version = "0.0.6";
|
||||
sha256 = "BK7ND6gtRVEitxaokJHmQ5rvSOgssVz+s9dktGQnY6M=";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
keybindings = [
|
||||
{
|
||||
key = "alt+k";
|
||||
when = "codeActionMenuVisible";
|
||||
command = "selectPrevCodeAction";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+j";
|
||||
when = "codeActionMenuVisible";
|
||||
command = "selectNextCodeAction";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+k";
|
||||
command = "selectPrevSuggestion";
|
||||
when = "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+j";
|
||||
command = "selectNextSuggestion";
|
||||
when = "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+k";
|
||||
command = "editor.action.moveLinesUpAction";
|
||||
when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+j";
|
||||
command = "editor.action.moveLinesDownAction";
|
||||
when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+j";
|
||||
command = "workbench.action.quickOpenNavigateNext";
|
||||
when = "inQuickOpen";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+k";
|
||||
command = "workbench.action.quickOpenNavigatePrevious";
|
||||
when = "inQuickOpen";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+f";
|
||||
command = "editor.action.formatDocument";
|
||||
when = "editorTextFocus && !editorReadonly";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+o";
|
||||
command = "editor.action.insertLineAfter";
|
||||
when = "textInputFocus && !editorReadonly";
|
||||
}
|
||||
|
||||
{
|
||||
key = "alt+shift+o";
|
||||
command = "editor.action.insertLineBefore";
|
||||
when = "textInputFocus && !editorReadonly";
|
||||
}
|
||||
];
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
# WakaTime.vscode-wakatime
|
||||
# dotjoshjohnson.xml
|
||||
# eamodio.gitlens
|
||||
# jock.svg
|
||||
# ms-azuretools.vscode-docker
|
||||
# ms-toolsai.jupyter
|
||||
# ms-vscode-remote.remote-ssh
|
||||
# ms-vsliveshare.vsliveshare
|
||||
bbenoist.nix
|
||||
christian-kohler.path-intellisense
|
||||
# coenraads.bracket-pair-colorizer-2
|
||||
haskell.haskell
|
||||
justusadam.language-haskell
|
||||
justusadam.language-haskell
|
||||
mechatroner.rainbow-csv
|
||||
mhutchie.git-graph
|
||||
ms-python.python
|
||||
ms-python.vscode-pylance
|
||||
ms-vscode-remote.remote-ssh
|
||||
naumovs.color-highlight
|
||||
oderwat.indent-rainbow
|
||||
pkief.material-icon-theme
|
||||
redhat.vscode-yaml
|
||||
shardulm94.trailing-spaces
|
||||
usernamehw.errorlens
|
||||
rust-lang.rust-analyzer
|
||||
mkhl.direnv
|
||||
waderyan.gitblame
|
||||
vscodevim.vim
|
||||
hbenl.vscode-test-explorer
|
||||
# vitaliymaz.vscode-svg-previewer
|
||||
ms-vscode.test-adapter-converter
|
||||
visualstudioexptteam.vscodeintellicode
|
||||
tamasfe.even-better-toml
|
||||
maximedenes.vscoq
|
||||
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
{
|
||||
name = "monokai-st3";
|
||||
publisher = "AndreyVolosovich";
|
||||
version = "0.2.0";
|
||||
sha256 = "1rvz5hlrfshy9laybxzvrdklx328s13j0lb8ljbda9zkadi3wcad";
|
||||
}
|
||||
{
|
||||
name = "comment-anchors";
|
||||
publisher = "ExodiusStudios";
|
||||
version = "1.10.4";
|
||||
sha256 = "sha256-FvfjPpQsgCsnY1BylhLCM/qDQChf9/iTr3cKkCGfMVI=";
|
||||
}
|
||||
{
|
||||
name = "vscode-gutter-preview";
|
||||
publisher = "kisstkondoros";
|
||||
version = "0.31.2";
|
||||
sha256 = "sha256-2/RvDSsVL06UmNG9HchXaJMJ4FYtnpuJ2Bn53JVv1t8=";
|
||||
}
|
||||
{
|
||||
name = "keyboard-quickfix";
|
||||
publisher = "pascalsenn";
|
||||
version = "0.0.6";
|
||||
sha256 = "BK7ND6gtRVEitxaokJHmQ5rvSOgssVz+s9dktGQnY6M=";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -160,7 +160,7 @@
|
||||
};
|
||||
in "${package}/themes/monokai.json";
|
||||
|
||||
programs.zsh.initExtra = ''
|
||||
programs.zsh.initContent = ''
|
||||
if [[ "$ZED_TERM" == "true" && -n "$TMUX_PANE" ]]; then
|
||||
unset TMUX_PANE
|
||||
fi
|
||||
|
||||
@@ -24,10 +24,6 @@ in
|
||||
defaultKeymap = "viins";
|
||||
enableCompletion = true;
|
||||
|
||||
initExtraBeforeCompInit = ''
|
||||
fpath+=(${pkgs.zsh-completions}/share/zsh/site-functions)
|
||||
'';
|
||||
|
||||
completionInit = "";
|
||||
|
||||
history = {
|
||||
@@ -73,19 +69,24 @@ in
|
||||
}
|
||||
];
|
||||
|
||||
initExtra = ''
|
||||
source ${./p10k.zsh}
|
||||
initContent = lib.mkMerge [
|
||||
(lib.mkOrder 550 ''
|
||||
fpath+=(${pkgs.zsh-completions}/share/zsh/site-functions)
|
||||
'')
|
||||
''
|
||||
source ${./p10k.zsh}
|
||||
|
||||
enable-fzf-tab
|
||||
enable-fzf-tab
|
||||
|
||||
zstyle ':fzf-tab:complete:cd:*' fzf-preview '${lib.getExe pkgs.eza} -1 --color=always $realpath'
|
||||
zstyle ':fzf-tab:complete:cd:*' fzf-preview '${lib.getExe pkgs.eza} -1 --color=always $realpath'
|
||||
|
||||
# Use tmux buffer if we are inside tmux
|
||||
if ! { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
|
||||
zstyle ':fzf-tab:*' fzf-command ftb-tmux-popup
|
||||
fi
|
||||
# Use tmux buffer if we are inside tmux
|
||||
if ! { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
|
||||
zstyle ':fzf-tab:*' fzf-command ftb-tmux-popup
|
||||
fi
|
||||
|
||||
source "${config.xdg.configHome}/mutable_env.sh"
|
||||
'';
|
||||
source "${config.xdg.configHome}/mutable_env.sh"
|
||||
''
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user