Skip to content

Instantly share code, notes, and snippets.

View k3karthic's full-sized avatar
💭
I may be slow to respond.

Karthic Kumaran k3karthic

💭
I may be slow to respond.
View GitHub Profile
@k3karthic
k3karthic / early-init.el
Last active May 16, 2023 23:32
Emacs Configuration
;; 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)
@k3karthic
k3karthic / extensions.md
Last active May 12, 2023 07:05
Sublime Configuration
  • EditorConfig
  • JsPrettier
  • LSP
  • LSP-pylsp
  • LSP-typescript
  • LSP-eslint
  • Pretty JSON
  • Pretty YAML
  • Sidebar Enhancements
  • Tabnine
@k3karthic
k3karthic / extensions.md
Last active May 31, 2023 06:30
VSCodium Configuration
  • Black (microsoft)
  • Color Highlight
  • EditorConfig
  • ESLint
  • Gitlens
  • Python
  • Prettier
  • PowerShell
  • Sourcery
  • AWS Toolkit
@k3karthic
k3karthic / extensions.md
Last active April 23, 2023 12:14
VSCode Configuration
  • Color Highlight
  • EditorConfig
  • ESLint
  • Gitlens
  • Copilot
  • Python
  • PowerShell
  • Prettier
  • Sourcery
  • XML
@k3karthic
k3karthic / update_nvim.sh
Created June 3, 2023 21:57
Update Neovim (AppImage w/o FUSE)
#!/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