- EditorConfig
- JsPrettier
- LSP
- LSP-pylsp
- LSP-typescript
- LSP-eslint
- Pretty JSON
- Pretty YAML
- Sidebar Enhancements
- Tabnine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Maximize GUI on launch | |
(add-hook 'window-setup-hook 'toggle-frame-maximized t) | |
(setq package-enable-at-startup nil) | |
(defun clear-welcome-buffer () | |
"Blank welcome buffer." | |
(with-current-buffer (get-buffer-create "*Welcome*") | |
(setq truncate-lines t) |
- Black (microsoft)
- Color Highlight
- EditorConfig
- ESLint
- Gitlens
- Python
- Prettier
- PowerShell
- Sourcery
- AWS Toolkit
- Color Highlight
- EditorConfig
- ESLint
- Gitlens
- Copilot
- Python
- PowerShell
- Prettier
- Sourcery
- XML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
cd /tmp | |
echo https://github.com/neovim/neovim/releases/download/stable/nvim.appimage | |
curl -OL https://github.com/neovim/neovim/releases/download/stable/nvim.appimage | |
chmod u+x nvim.appimage | |
./nvim.appimage --appimage-extract | |
mkdir -p ~/bin/nvim | |
mv /tmp/squashfs-root ~/bin/nvim | |
rm nvim.appimage |
OlderNewer