Zenn
Closed5

Windows端末設定

counterintuitivecounterintuitive

貸与されたWindows端末に

IME

業務用語とかをどんどん追加しておく。
Cheat Sheetとしても活用したい

Outlook

Web版を使いたい
Web版だとGmailのショートカットが使える素晴らしい

OneNote

クイックアクセスツールバー

Excel

クイックアクセスツールバー

PowerPoint

クイックアクセスツールバー

ブラウザ

https://zenn.dev/link/comments/f58a283009f9f5

counterintuitivecounterintuitive

Sakuraエディタ

Markdownでは以下が有名だが、

https://github.com/ngyuki/sakuraeditor-plugin-markdown

アウトライン表示はこちらのほうがいい

;Mode=Regex

^\#\#\#\#\#\#\# /// LV6
^\#\#\#\#\#\# /// LV5
^\#\#\#\#\# /// LV4
^\#\#\#\# /// LV3
^\#\#\# /// LV2
^\#\# /// LV1
^\# /// LV0

.ruleファイルとして作成し、
[設定]-[タイプ別設定]-[スクリーン]-[アウトライン解析方法]の
ルールファイル
として設定

counterintuitivecounterintuitive

PowerShell

エイリアス


# スクリプト実行が許可されていなければ許可する
if((Get-ExecutionPolicy -Scope LocalMachine) -ne "RemoteSigned"){Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force}
# Profile が無ければ作成
if(-not (Test-Path $PROFILE)){New-Item $PROFILE -Type File -Force}
# メモ帳で Profile を開く
notepad $PROFILE

### メモ帳が開いたら、「Set-Alias [エイリアス] [実体]」を追加し、保存


Set-Alias subl "C:\xxx\sublime_text.exe"
function dev(){cd "C:\xxxx\"}

PowerShell(WindowsTerminalでも)を開きなおす

https://www.vwnet.jp/windows/PowerShell/2020100601/PsAlias.htm

このスクラップは2024/06/29にクローズされました
作成者以外のコメントは許可されていません