Merge branch 'main' of https://git.zacke.dev/wholteza/consultant-windows
This commit is contained in:
@@ -15,6 +15,10 @@
|
||||
"command": "paste",
|
||||
"id": "User.paste"
|
||||
},
|
||||
{
|
||||
"command": "find",
|
||||
"id": "User.find"
|
||||
},
|
||||
{
|
||||
"command":
|
||||
{
|
||||
@@ -24,10 +28,6 @@
|
||||
},
|
||||
"id": "User.splitPane.A6751878"
|
||||
},
|
||||
{
|
||||
"command": "find",
|
||||
"id": "User.find"
|
||||
},
|
||||
{
|
||||
"command":
|
||||
{
|
||||
@@ -50,14 +50,14 @@
|
||||
"id": "User.copy.644BA8F2",
|
||||
"keys": "ctrl+c"
|
||||
},
|
||||
{
|
||||
"id": "User.find",
|
||||
"keys": "ctrl+shift+f"
|
||||
},
|
||||
{
|
||||
"id": "User.paste",
|
||||
"keys": "ctrl+v"
|
||||
},
|
||||
{
|
||||
"id": "User.find",
|
||||
"keys": "ctrl+shift+f"
|
||||
},
|
||||
{
|
||||
"id": "User.splitPane.A6751878",
|
||||
"keys": "alt+shift+d"
|
||||
@@ -141,6 +141,18 @@
|
||||
"hidden": true,
|
||||
"name": "Visual Studio Debug Console",
|
||||
"source": "VSDebugConsole"
|
||||
},
|
||||
{
|
||||
"guid": "{355e8afa-1c29-586b-8e45-29749ab7cd96}",
|
||||
"hidden": false,
|
||||
"name": "Developer Command Prompt for VS 2022",
|
||||
"source": "Windows.Terminal.VisualStudio"
|
||||
},
|
||||
{
|
||||
"guid": "{deebd96f-cb5d-5aa4-b705-3e674eac8607}",
|
||||
"hidden": false,
|
||||
"name": "Developer PowerShell for VS 2022",
|
||||
"source": "Windows.Terminal.VisualStudio"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
@@ -997,6 +997,7 @@ require('lazy').setup({
|
||||
require 'kickstart.plugins.neo-tree',
|
||||
require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
|
||||
require 'kickstart.plugins.pastify',
|
||||
require 'kickstart.plugins.db',
|
||||
|
||||
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
||||
-- This is the easiest way to modularize your config.
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"nvim-dap-ui": { "branch": "master", "commit": "cf91d5e2d07c72903d052f5207511bf7ecdb7122" },
|
||||
"nvim-dap-virtual-text": { "branch": "master", "commit": "fbdb48c2ed45f4a8293d0d483f7730d24467ccb6" },
|
||||
"nvim-dap-vscode-js": { "branch": "main", "commit": "03bd29672d7fab5e515fc8469b7d07cc5994bbf6" },
|
||||
"nvim-dbee": { "branch": "master", "commit": "dda517694889a5d238d7aa407403984da9f80cc0" },
|
||||
"nvim-lint": { "branch": "master", "commit": "7ef127aaede2a4d5ad8df8321e2eb4e567f29594" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef" },
|
||||
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
|
||||
|
||||
17
AppData/Local/nvim/lua/kickstart/plugins/db.lua
Normal file
17
AppData/Local/nvim/lua/kickstart/plugins/db.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
return {
|
||||
{
|
||||
'kndndrj/nvim-dbee',
|
||||
dependencies = {
|
||||
'MunifTanjim/nui.nvim',
|
||||
},
|
||||
build = function()
|
||||
-- Install tries to automatically detect the install method.
|
||||
-- if it fails, try calling it with one of these parameters:
|
||||
-- "curl", "wget", "bitsadmin", "go"
|
||||
require('dbee').install()
|
||||
end,
|
||||
config = function()
|
||||
require('dbee').setup(--[[optional config]])
|
||||
end,
|
||||
},
|
||||
}
|
||||
@@ -13,9 +13,9 @@ $packages = @(
|
||||
"chocolatey.chocolatey", # nvim
|
||||
"Python.Python.3.13", # nvim
|
||||
"Python.Python.3.9", # project dependencies
|
||||
"Python.Python.3.10", # isort
|
||||
"JernejSimoncic.Wget", # nvim
|
||||
"7zip.7zip", # nvim
|
||||
"zig.zig"
|
||||
"7zip.7zip" # nvim
|
||||
)
|
||||
|
||||
foreach ($package in $packages)
|
||||
@@ -32,7 +32,7 @@ cd ~
|
||||
npm install # mostly nvim deps
|
||||
|
||||
## Nvim requirements from choco, needs to be run as admin
|
||||
Start-Process pwsh -Verb RunAs -ArgumentList "-Command", "choco install make unzip ripgrep"
|
||||
Start-Process pwsh -Verb RunAs -ArgumentList "-Command", "choco install make unzip ripgrep zig"
|
||||
|
||||
## Nvim requirements from pip
|
||||
python -m pip install debugpy neovim pillow
|
||||
@@ -40,31 +40,18 @@ python -m pip install debugpy neovim pillow
|
||||
## Git posh
|
||||
Install-Module posh-git -Scope CurrentUser -Force
|
||||
|
||||
|
||||
|
||||
Exit
|
||||
|
||||
# extras, make flag for these
|
||||
|
||||
$packages = @(
|
||||
"Schniz.fnm", # Fast node version manager
|
||||
"wez.wezterm", # Teminal emulator
|
||||
#"gnupg.gpg4win",
|
||||
"microsoft.teams",
|
||||
"putty.putty",
|
||||
"microsoft.windowsterminal",
|
||||
"mozilla.firefox",
|
||||
"mRemoteNG.mRemoteNG",
|
||||
"mozilla.firefox.developeredition",
|
||||
"Microsoft.VisualStudio.2022.Community",
|
||||
"JetBrains.Resharper",
|
||||
"jandedobbeleer.ohmyposh",
|
||||
#"IJHack.QtPass",
|
||||
"Microsoft.powertoys",
|
||||
"google.chrome",
|
||||
#"spotify.spotify",
|
||||
"spotify.spotify",
|
||||
"microsoft.azuredatastudio",
|
||||
#"mozilla.thunderbird",
|
||||
"mozilla.thunderbird",
|
||||
"yubico.authenticator",
|
||||
"microsoft.powershell",
|
||||
"Postman.Postman",
|
||||
"docker.dockerdesktop"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user