Created
March 17, 2021 12:36
-
-
Save haxcited/c3f1fa0ed495ce0f7806f56310c3a584 to your computer and use it in GitHub Desktop.
This file contains 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
(package-initialize) | |
(when (not package-archive-contents) | |
(package-refresh-contents)) | |
;;add the packages which you want to install | |
(defvar my-packages '(;;buradan ihtiyaclari belirle onlari ac sadece | |
anzu | |
ace-jump-mode | |
all-the-icons | |
all-the-icons-dired | |
auto-shell-command ;;cok tatli yeniden kurunca buglarini hallet | |
company | |
company-restclient | |
default-text-scale | |
deferred ;;needed for auto-shell-command | |
diminish | |
diredfl ;;more colorful dired buffers | |
dired-hacks-utils | |
edit-server | |
elpy ;;apt ile kuruldu | |
erc-colorize | |
erc-hl-nicks | |
gist;;calismasi icin github ssh kurmus olman lazim | |
google-this | |
helm | |
helm-eww | |
helm-pass | |
helm-swoop | |
htmlize;; htmlize-screenshot var region'i htmlize ediyor blog icin guzel | |
json-navigator | |
json-reformat | |
json-snatcher | |
key-chord | |
markdown-mode | |
magit | |
paredit | |
pdf-tools;;begenmedim direk acmiyor.once pdf-occur sonra M-x pdf-view-mode | |
php-mode | |
rainbow-delimiters | |
;; rfc-mode;;M-x rfc-mode-browse rfc dizini /home/onur/rfc/ buraya at | |
restclient | |
shackle;;https://github.com/wasamasa/shackle enforce rules for popup windows | |
;; insert-shebang;;ayarlarini yap yaramaz | |
smartparens | |
smooth-scrolling;;cok tatli oldu bunla | |
ssh-config-mode | |
;tramp-term ;-> cok guzel term icinde ssh sessiondan tramp ile direk C-x C-f dosya ac | |
turkish | |
use-package | |
w3m | |
window-numbering;;pencerelere numara verir alt-1 alt-2 | |
yaml-mode | |
yasnippet | |
yasnippet-snippets | |
;;undo-tree | |
cyberpunk-theme | |
dockerfile-mode | |
nasm-mode | |
multi-term | |
helm-mt | |
;; origami -> hem bu hem alttakine gerek yok hs-show-all hide-all | |
;; vimish-fold | |
bm | |
disaster | |
rust-mode | |
cargo | |
racer | |
company-racer | |
spacemacs-theme | |
spaceline | |
eshell-up | |
persistent-scratch | |
cliphist | |
docker | |
docker-tramp | |
git-timemachine | |
eshell-bookmark | |
;;ranger non-intuitive | |
nodejs-repl | |
js2-mode | |
company-tern | |
ac-js2 | |
cider | |
exec-path-from-shell | |
alert | |
;; ercn | |
;; crontab-mode | |
sauron | |
lua-mode | |
company-lua | |
pepita | |
powershell | |
lsp-mode;;todo -> config | |
apache-mode | |
kubernetes | |
kubernetes-helm | |
kubel | |
elcord | |
imgbb;;[error] request--callback: peculiar error Error uploading image. | |
web-mode | |
emmet-mode | |
helm-emmet | |
company-web | |
impatient-mode | |
skewer-mode | |
verb | |
ascii-table | |
tramp-term | |
projectile | |
helm-tramp | |
recentf-remove-sudo-tramp-prefix | |
graphql-mode | |
prettier-js | |
)) | |
(dolist (p my-packages) | |
(when (not (package-installed-p p)) | |
(package-install p))) | |
;; C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* | |
;; C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* | |
;; C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* | |
;; C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* C* | |
;;anzu | |
(global-anzu-mode +1) | |
;;all-the-icons | |
(require 'all-the-icons) | |
;;(setq all-the-icons-color-icons t) | |
(add-hook 'dired-mode-hook 'all-the-icons-dired-mode) | |
;;auto-shell-command --> debugged: no answer to pull req on github. find-if -> to -> cl-find-if | |
(require 'auto-shell-command) | |
(ascmd:add '(".Xresources" "xrdb -merge ~/.Xresources")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment