Compare commits

...

3 commits

Author SHA1 Message Date
90d8a5724b Added smex 2020-06-08 17:48:45 +02:00
3c152cc2a4 Added hunspell flycheck 2020-06-07 18:05:20 +02:00
9d99154ea8 Added Drag-stuff 2020-06-07 11:44:34 +02:00
19 changed files with 718 additions and 50 deletions

View file

@ -0,0 +1,6 @@
/home/balazs/.emacs.d/conf.org
/home/balazs/.emacs.d/#conf.org#
/home/balazs/Dokumentumok/Org/SzhArch/szgarch.org
/home/balazs/Dokumentumok/Org/SzhArch/#szgarch.org#
/home/balazs/.emacs.d/init.el
/home/balazs/.emacs.d/#init.el#

View file

@ -1,2 +0,0 @@
/home/balazs/.emacs.d/conf.org
/home/balazs/.emacs.d/#conf.org#

47
conf.el
View file

@ -42,15 +42,6 @@ There are two things you can do about this warning:
;;(require 'cask "~/.cask/cask.el")
;;(cask-initialize)
;;(add-to-list 'load-path "/some/path/neotree")
(require 'neotree)
(global-set-key [f8] 'neotree-toggle)
(nyan-mode)
(require 'org-bullets)
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
(require 'rtags)
(require 'company-rtags)
@ -97,8 +88,8 @@ There are two things you can do about this warning:
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
;(eval-after-load 'flycheck
; '(add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup))
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup))
(cmake-ide-setup)
@ -124,6 +115,25 @@ There are two things you can do about this warning:
(smex-initialize) ; Can be omitted. This might cause a (minimal) delay
; when Smex is auto-initialized on its first run.
(add-to-list 'load-path
"~/.emacs.d/plugins/yasnippet")
(require 'yasnippet)
(yas-global-mode 1)
(add-hook 'c-mode-hook #'yas-minor-mode)
(add-hook 'c++-mode-hook #'yas-minor-mode)
(drag-stuff-mode t)
(require 'org-bullets)
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
(nyan-mode)
;;(add-to-list 'load-path "/some/path/neotree")
(require 'neotree)
(global-set-key [f8] 'neotree-toggle)
(define-key c-mode-base-map (kbd "M-.") (function rtags-find-symbol-at-point))
(define-key c-mode-base-map (kbd "M-,") (function rtags-find-references-at-point))
(define-key c-mode-base-map (kbd "M-;") (function rtags-find-file))
@ -180,8 +190,6 @@ There are two things you can do about this warning:
(setq minibuffer-completion-confirm nil)
(setq ispell-local-dictionary "/home/balazs/.local/hu_HU.dic")
;;(load-theme "humanoid-dark" t)
;;(add-hook 'after-init-hook (lambda () (load-theme "humanoid-dark")))
@ -192,14 +200,21 @@ There are two things you can do about this warning:
(add-hook 'org-mode-hook '(lambda () (setq fill-column 80)))
(add-hook 'org-mode-hook 'auto-fill-mode)
;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el
(global-auto-revert-mode 1)
(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
(setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq-default TeX-master nil)
(setq doc-view-continuous t)
;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el
(global-auto-revert-mode 1)
(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
(setq ispell-program-name "hunspell"
ispell-local-dictionary "hu_HU"
ispell-skip-html t
ispell-local-dictionary-alist
'(("hu_HU" "\[\[:alpha:\]\]" "[^[:alpha:]]" "[']" nil ("-d" "hu_HU") nil utf-8)))
(setq ispell-dictionary "hu_HU")
;(cd "~/CLionProjects/prog2/")

View file

@ -51,21 +51,6 @@ There are two things you can do about this warning:
;;(cask-initialize)
#+END_SRC
** Plugin-ok betöltése
*** Neotree
#+BEGIN_SRC emacs-lisp
;;(add-to-list 'load-path "/some/path/neotree")
(require 'neotree)
(global-set-key [f8] 'neotree-toggle)
#+END_SRC
*** Nyan-mode
#+BEGIN_SRC emacs-lisp
(nyan-mode)
#+END_SRC
*** ORG-bullets
#+BEGIN_SRC emacs-lisp
(require 'org-bullets)
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
#+END_SRC
*** RTags
#+BEGIN_SRC emacs-lisp
(require 'rtags)
@ -122,8 +107,8 @@ There are two things you can do about this warning:
#+END_SRC
*** Flycheck-clang-tidy
#+BEGIN_SRC emacs-lisp
;(eval-after-load 'flycheck
; '(add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup))
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup))
#+END_SRC
*** Cmake-ide
#+BEGIN_SRC emacs-lisp
@ -159,6 +144,36 @@ There are two things you can do about this warning:
(smex-initialize) ; Can be omitted. This might cause a (minimal) delay
; when Smex is auto-initialized on its first run.
#+END_SRC
*** Yasnippet
#+BEGIN_SRC emacs-lisp
(add-to-list 'load-path
"~/.emacs.d/plugins/yasnippet")
(require 'yasnippet)
(yas-global-mode 1)
(add-hook 'c-mode-hook #'yas-minor-mode)
(add-hook 'c++-mode-hook #'yas-minor-mode)
#+END_SRC
*** Drag-stuff
#+BEGIN_SRC emacs-lisp
(drag-stuff-mode t)
#+END_SRC
*** ORG-bullets
#+BEGIN_SRC emacs-lisp
(require 'org-bullets)
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
#+END_SRC
*** Nyan-mode
#+BEGIN_SRC emacs-lisp
(nyan-mode)
#+END_SRC
*** Neotree
#+BEGIN_SRC emacs-lisp
;;(add-to-list 'load-path "/some/path/neotree")
(require 'neotree)
(global-set-key [f8] 'neotree-toggle)
#+END_SRC
* Makró beállítások
** Rtags
#+BEGIN_SRC emacs-lisp
@ -238,10 +253,6 @@ There are two things you can do about this warning:
#+BEGIN_SRC emacs-lisp
(setq minibuffer-completion-confirm nil)
#+END_SRC
** Spellcheck
#+BEGIN_SRC emacs-lisp
(setq ispell-local-dictionary "/home/balazs/.local/hu_HU.dic")
#+END_SRC
** Téma betöltése
#+BEGIN_SRC emacs-lisp
;;(load-theme "humanoid-dark" t)
@ -255,8 +266,12 @@ There are two things you can do about this warning:
(add-hook 'org-mode-hook '(lambda () (setq fill-column 80)))
(add-hook 'org-mode-hook 'auto-fill-mode)
#+END_SRC
#+BEGIN_SRC emacs-lisp
;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el
(global-auto-revert-mode 1)
(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
#+END_SRC
** LaTeX
#+BEGIN_SRC emacs-lisp
(setq TeX-auto-save t)
@ -267,11 +282,16 @@ There are two things you can do about this warning:
#+BEGIN_SRC emacs-lisp
(setq doc-view-continuous t)
#+END_SRC
** Hunspell
#+BEGIN_SRC emacs-lisp
(setq ispell-program-name "hunspell"
ispell-local-dictionary "hu_HU"
ispell-skip-html t
ispell-local-dictionary-alist
'(("hu_HU" "\[\[:alpha:\]\]" "[^[:alpha:]]" "[']" nil ("-d" "hu_HU") nil utf-8)))
(setq ispell-dictionary "hu_HU")
#+END_SRC
** Teszt
#+BEGIN_SRC emacs-lisp
;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el
(global-auto-revert-mode 1)
(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
;(cd "~/CLionProjects/prog2/")
#+END_SRC

View file

@ -0,0 +1,83 @@
;;; drag-stuff-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
(add-to-list 'load-path (directory-file-name
(or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "drag-stuff" "drag-stuff.el" (0 0 0 0))
;;; Generated autoloads from drag-stuff.el
(autoload 'drag-stuff-up "drag-stuff" "\
Drag stuff ARG lines up.
\(fn ARG)" t nil)
(autoload 'drag-stuff-down "drag-stuff" "\
Drag stuff ARG lines down.
\(fn ARG)" t nil)
(autoload 'drag-stuff-right "drag-stuff" "\
Drag stuff ARG lines to the right.
\(fn ARG)" t nil)
(autoload 'drag-stuff-left "drag-stuff" "\
Drag stuff ARG lines to the left.
\(fn ARG)" t nil)
(autoload 'drag-stuff-mode "drag-stuff" "\
Drag stuff around.
\(fn &optional ARG)" t nil)
(autoload 'turn-on-drag-stuff-mode "drag-stuff" "\
Turn on `drag-stuff-mode'.
\(fn)" t nil)
(autoload 'turn-off-drag-stuff-mode "drag-stuff" "\
Turn off `drag-stuff-mode'.
\(fn)" t nil)
(defvar drag-stuff-global-mode nil "\
Non-nil if Drag-Stuff-Global mode is enabled.
See the `drag-stuff-global-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `drag-stuff-global-mode'.")
(custom-autoload 'drag-stuff-global-mode "drag-stuff" nil)
(autoload 'drag-stuff-global-mode "drag-stuff" "\
Toggle Drag-Stuff mode in all buffers.
With prefix ARG, enable Drag-Stuff-Global mode if ARG is positive;
otherwise, disable it. If called from Lisp, enable the mode if
ARG is omitted or nil.
Drag-Stuff mode is enabled in all buffers where
`turn-on-drag-stuff-mode' would do it.
See `drag-stuff-mode' for more information on Drag-Stuff mode.
\(fn &optional ARG)" t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "drag-stuff" '("drag-stuff-")))
;;;***
;;;### (autoloads nil nil ("drag-stuff-pkg.el") (0 0 0 0))
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; drag-stuff-autoloads.el ends here

View file

@ -0,0 +1,4 @@
(define-package "drag-stuff" "20161108.749" "Drag stuff (lines, words, region, etc...) around" 'nil :commit "6d06d846cd37c052d79acd0f372c13006aa7e7c8")
;; Local Variables:
;; no-byte-compile: t
;; End:

View file

@ -0,0 +1,364 @@
;;; drag-stuff.el --- Drag stuff (lines, words, region, etc...) around
;; Copyright (C) 2010-2016 Johan Andersson
;; Author: Johan Andersson <johan.rejeep@gmail.com>
;; Maintainer: Johan Andersson <johan.rejeep@gmail.com>
;; Version: 0.3.0
;; Keywords: speed, convenience
;; URL: http://github.com/rejeep/drag-stuff
;; This file is NOT part of GNU Emacs.
;;; License:
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; drag-stuff is a minor mode for dragging stuff around in Emacs. You
;; can drag lines, words and region.
;; To use drag-stuff, make sure that this file is in Emacs load-path
;; (add-to-list 'load-path "/path/to/directory/or/file")
;;
;; Then require drag-stuff
;; (require 'drag-stuff)
;; To start drag-stuff
;; (drag-stuff-mode t) or M-x drag-stuff-mode
;;
;; drag-stuff is buffer local, so hook it up
;; (add-hook 'ruby-mode-hook 'drag-stuff-mode)
;;
;; Or use the global mode to activate it in all buffers.
;; (drag-stuff-global-mode t)
;; Drag Stuff stores a list (`drag-stuff-except-modes') of modes in
;; which `drag-stuff-mode' should not be activated in (note, only if
;; you use the global mode) because of conflicting use.
;;
;; You can add new except modes:
;; (add-to-list 'drag-stuff-except-modes 'conflicting-mode)
;; Default modifier key is the meta-key. This can be changed and is
;; controlled by the variable `drag-stuff-modifier'.
;;
;; Control key as modifier:
;; (setq drag-stuff-modifier 'control)
;;
;; Meta and Shift keys as modifier:
;; (setq drag-stuff-modifier '(meta shift))
;;; Code:
(eval-when-compile
(require 'cl))
(defvar drag-stuff-except-modes ()
"A list of modes in which `drag-stuff-mode' should not be activated.")
(defvar drag-stuff-modifier 'meta
"Modifier key(s) for bindings in `drag-stuff-mode-map'.")
(defvar drag-stuff-mode-map (make-sparse-keymap)
"Keymap for `drag-stuff-mode'.")
(defvar drag-stuff-before-drag-hook nil
"Called before dragging occurs.")
(defvar drag-stuff-after-drag-hook nil
"Called after dragging occurs.")
;; save-mark-and-excursion in Emacs 25 works like save-excursion did before
(eval-when-compile
(when (not (fboundp #'save-mark-and-excursion))
(defmacro save-mark-and-excursion (&rest body)
`(save-excursion ,@body))))
(defun drag-stuff--evil-p ()
"Predicate for checking if we're in evil visual state."
(and (bound-and-true-p evil-mode) (evil-visual-state-p)))
(defun drag-stuff--kbd (key)
"Key binding helper."
(let ((mod (if (listp drag-stuff-modifier)
drag-stuff-modifier
(list drag-stuff-modifier))))
(vector (append mod (list key)))))
(defun drag-stuff--line-at-mark ()
"Returns the line number where mark (first char selected) is."
(line-number-at-pos
(if evilp evil-visual-mark (mark))))
(defun drag-stuff--line-at-point ()
"Returns the line number where point (current selected char) is."
(line-number-at-pos
(if evilp evil-visual-point (point))))
(defun drag-stuff--col-at-mark ()
"Returns the column number where mark (first char selected) is."
(if evilp
(save-mark-and-excursion (goto-char evil-visual-mark) (current-column))
(save-mark-and-excursion (exchange-point-and-mark) (current-column))))
(defun drag-stuff--col-at-point ()
"Returns the column number where point (current selected char) is."
(if evilp
(save-mark-and-excursion (goto-char evil-visual-point) (current-column))
(current-column)))
(defmacro drag-stuff--execute (&rest body)
"Execute BODY without conflicting modes."
`(let ((auto-fill-function nil)
(electric-indent-mode nil)
(longlines-mode-active
(and (boundp 'longlines-mode) longlines-mode)))
(when longlines-mode-active
(longlines-mode -1))
(run-hooks 'drag-stuff-before-drag-hook)
,@body
(run-hooks 'drag-stuff-after-drag-hook)
(when longlines-mode-active
(longlines-mode 1))))
;;;###autoload
(defun drag-stuff-up (arg)
"Drag stuff ARG lines up."
(interactive "p")
(drag-stuff--execute
(if mark-active
(drag-stuff-lines-up (- arg))
(drag-stuff-line-up (- arg)))))
;;;###autoload
(defun drag-stuff-down (arg)
"Drag stuff ARG lines down."
(interactive "p")
(drag-stuff--execute
(if mark-active
(drag-stuff-lines-down arg)
(drag-stuff-line-down arg))))
;;;###autoload
(defun drag-stuff-right (arg)
"Drag stuff ARG lines to the right."
(interactive "p")
(if mark-active
(drag-stuff-region-right arg)
(drag-stuff-word-right arg)))
;;;###autoload
(defun drag-stuff-left (arg)
"Drag stuff ARG lines to the left."
(interactive "p")
(if mark-active
(drag-stuff-region-left arg)
(drag-stuff-word-left arg)))
(defun drag-stuff-line-up (arg)
"Drag current line ARG lines up."
(if (> (line-number-at-pos) (abs arg))
(drag-stuff-line-vertically
(lambda (beg end column)
(drag-stuff-drag-region-up beg end arg)
(move-to-column column)))
(message "Can not move line further up")))
(defun drag-stuff-line-down (arg)
"Drag current line ARG lines down."
(if (<= (+ (line-number-at-pos) arg) (count-lines (point-min) (point-max)))
(drag-stuff-line-vertically
(lambda (beg end column)
(drag-stuff-drag-region-down beg end arg)
(move-to-column column)))
(message "Can not move line further down")))
(defun drag-stuff-line-vertically (fn)
"Yields variables used to drag line vertically."
(let ((column (current-column))
(beg (line-beginning-position))
(end (line-end-position)))
(funcall fn beg end column)))
(defun drag-stuff-lines-up (arg)
"Move all lines in the selected region ARG lines up."
(if (> (line-number-at-pos (region-beginning)) (abs arg))
(drag-stuff-lines-vertically
(lambda (beg end)
(drag-stuff-drag-region-up beg end arg)))
(message "Can not move lines further up")))
(defun drag-stuff-lines-down (arg)
"Move all lines in the selected region ARG lines up."
(let ((selection-end (if (drag-stuff--evil-p)
(save-mark-and-excursion (evil-visual-goto-end))
(region-end))))
(if (<= (+ (line-number-at-pos selection-end) arg) (count-lines (point-min) (point-max)))
(drag-stuff-lines-vertically
(lambda (beg end)
(drag-stuff-drag-region-down beg end arg)))
(message "Can not move lines further down"))))
(defun drag-stuff-lines-vertically (fn)
"Yields variables used to drag lines vertically."
(let* ((evilp (drag-stuff--evil-p))
(vtype (if evilp (evil-visual-type) nil))
(mark-line (drag-stuff--line-at-mark))
(point-line (drag-stuff--line-at-point))
(mark-col (drag-stuff--col-at-mark))
(point-col (drag-stuff--col-at-point))
(bounds (drag-stuff-whole-lines-region))
(beg (car bounds))
(end (car (cdr bounds)))
(deactivate-mark nil))
(funcall fn beg end)
;; Restore region
(goto-line mark-line)
(forward-line arg)
(move-to-column mark-col)
(exchange-point-and-mark)
(goto-line point-line)
(forward-line arg)
(move-to-column point-col)
(when evilp
(evil-visual-make-selection (mark) (point))
(when (eq vtype 'line) (evil-visual-line (mark) (point))))))
(defun drag-stuff-drag-region-up (beg end arg)
"Drags region between BEG and END ARG lines up."
(let ((region (buffer-substring-no-properties beg end)))
(when (drag-stuff--evil-p) (evil-exit-visual-state))
(delete-region beg end)
(backward-delete-char 1)
(forward-line (+ arg 1))
(goto-char (line-beginning-position))
(insert region)
(newline)
(forward-line -1)))
(defun drag-stuff-drag-region-down (beg end arg)
"Drags region between BEG and END ARG lines down."
(let ((region (buffer-substring-no-properties beg end)))
(when (drag-stuff--evil-p) (evil-exit-visual-state))
(delete-region beg end)
(delete-char 1)
(forward-line (- arg 1))
(goto-char (line-end-position))
(newline)
(insert region)))
(defun drag-stuff-whole-lines-region ()
"Return the positions of the region with whole lines included."
(let (beg end)
(cond (evilp
(setq beg (save-mark-and-excursion (goto-char (region-beginning)) (line-beginning-position)))
(setq end (save-mark-and-excursion (evil-visual-goto-end) (line-end-position))))
(t
(if (> (point) (mark))
(exchange-point-and-mark))
(setq beg (line-beginning-position))
(if mark-active
(exchange-point-and-mark))
(setq end (line-end-position))))
(list beg end)))
(defun drag-stuff-region-left (arg)
"Drags region left ARG times."
(if (> (min (point) (mark)) (point-min))
(drag-stuff-region-horizontally (- arg))
(message "Can not move region further to the left")))
(defun drag-stuff-region-right (arg)
"Drags region right ARG times."
(if (< (max (point) (mark)) (point-max))
(drag-stuff-region-horizontally arg)
(message "Can not move region further to the right")))
(defun drag-stuff-region-horizontally (arg)
"Drags region horizontally ARG times."
(let* ((beg (mark))
(end (point))
(region (buffer-substring-no-properties beg end))
(deactivate-mark nil))
(delete-region beg end)
(forward-char arg)
(insert region)
(set-mark (+ beg arg))
(goto-char (+ end arg))))
(defun drag-stuff-word-left (arg)
"Drags word left ARG times."
(drag-stuff-word-horizontally (- arg)))
(defun drag-stuff-word-right (arg)
"Drags word right ARG times."
(drag-stuff-word-horizontally arg))
(defun drag-stuff-word-horizontally (arg)
"Drags word horizontally ARG times."
(let ((old-point (point))
(offset (- (save-mark-and-excursion (forward-word) (point)) (point))))
(condition-case err
(progn
(transpose-words arg)
(backward-char offset))
(error
(message
(if (> arg 0)
"Can not move word further to the right"
"Can not move word further to the left"))
(goto-char old-point)))))
(defun drag-stuff-define-keys ()
"Defines keys for `drag-stuff-mode'."
(define-key drag-stuff-mode-map (drag-stuff--kbd 'up) 'drag-stuff-up)
(define-key drag-stuff-mode-map (drag-stuff--kbd 'down) 'drag-stuff-down)
(define-key drag-stuff-mode-map (drag-stuff--kbd 'right) 'drag-stuff-right)
(define-key drag-stuff-mode-map (drag-stuff--kbd 'left) 'drag-stuff-left))
;;;###autoload
(define-minor-mode drag-stuff-mode
"Drag stuff around."
:init-value nil
:lighter " drag"
:keymap drag-stuff-mode-map)
;;;###autoload
(defun turn-on-drag-stuff-mode ()
"Turn on `drag-stuff-mode'."
(interactive)
(unless (member major-mode drag-stuff-except-modes)
(drag-stuff-mode +1)))
;;;###autoload
(defun turn-off-drag-stuff-mode ()
"Turn off `drag-stuff-mode'."
(interactive)
(drag-stuff-mode -1))
;;;###autoload
(define-globalized-minor-mode drag-stuff-global-mode
drag-stuff-mode
turn-on-drag-stuff-mode)
(provide 'drag-stuff)
;;; drag-stuff.el ends here

Binary file not shown.

View file

@ -10,7 +10,7 @@
("2679db166117d5b26b22a8f12a940f5ac415d76b004de03fcd34483505705f62" "0fffa9669425ff140ff2ae8568c7719705ef33b7a927a0ba7c5e2ffcfac09b75" "2809bcb77ad21312897b541134981282dc455ccd7c14d74cc333b6e549b824f3" "8ca8fbaeaeff06ac803d7c42de1430b9765d22a439efc45b5ac572c2d9d09b16" "229c5cf9c9bd4012be621d271320036c69a14758f70e60385e87880b46d60780" default)))
'(package-selected-packages
(quote
(smex ox-epub quelpa emacsshot org-drill auctex highlight-doxygen format-all srefactor preproc-font-lock solarized-theme humanoid-themes nyan-mode neotree flycheck))))
(drag-stuff smex ox-epub quelpa emacsshot org-drill auctex highlight-doxygen format-all srefactor preproc-font-lock solarized-theme humanoid-themes nyan-mode neotree flycheck))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

20
init.el~ Normal file
View file

@ -0,0 +1,20 @@
(org-babel-load-file "~/.emacs.d/conf.org")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-enabled-themes (quote humanoid-dark))
'(custom-safe-themes
(quote
("2679db166117d5b26b22a8f12a940f5ac415d76b004de03fcd34483505705f62" "0fffa9669425ff140ff2ae8568c7719705ef33b7a927a0ba7c5e2ffcfac09b75" "2809bcb77ad21312897b541134981282dc455ccd7c14d74cc333b6e549b824f3" "8ca8fbaeaeff06ac803d7c42de1430b9765d22a439efc45b5ac572c2d9d09b16" "229c5cf9c9bd4012be621d271320036c69a14758f70e60385e87880b46d60780" default)))
'(package-selected-packages
(quote
(smex ox-epub quelpa emacsshot org-drill auctex highlight-doxygen format-all srefactor preproc-font-lock solarized-theme humanoid-themes nyan-mode neotree flycheck))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(preproc-font-lock-preprocessor-background ((t (:foreground "lawn green")))))
(load-theme 'humanoid-dark t)

1
plugins/yasnippet Submodule

@ -0,0 +1 @@
Subproject commit d3d6d70b1cd4818d271752468e0fdb0788db750d

View file

@ -0,0 +1,16 @@
;; Object semanticdb-project-database-file
;; SEMANTICDB Tags save file
(semanticdb-project-database-file "semanticdb-project-database-file"
:tables
(list
(semanticdb-table "semanticdb-table"
:major-mode emacs-lisp-mode
:tags nil
:file "drag-stuff-autoloads.el"
:pointmax 359
:fsize 2114
:lastmodtime '(24284 45397 801967 135000)
:unmatched-syntax nil))
:file "!home!balazs!.emacs.d!elpa!drag-stuff-20161108.749!semantic.cache"
:semantic-tag-version "2.0"
:semanticdb-version "2.2")

View file

@ -5,12 +5,18 @@
(list
(semanticdb-table "semanticdb-table"
:major-mode emacs-lisp-mode
:tags nil
:tags
'( ("org-babel-load-file" code nil nil [1 44])
("custom-set-variables" code nil nil [45 942])
("custom-set-faces" code nil nil [943 1259])
("load-theme" code nil nil [1260 1289]))
:file "init.el"
:pointmax 1274
:fsize 1278
:lastmodtime '(24284 43406 739303 887000)
:unmatched-syntax nil))
:pointmax 1290
:fsize 1289
:lastmodtime '(24284 45396 390939 697000)
:unmatched-syntax nil)
)
:file "!home!balazs!.emacs.d!semantic.cache"
:semantic-tag-version "2.0"
:semanticdb-version "2.2")

View file

@ -0,0 +1,14 @@
;; Object semanticdb-project-database-file
;; SEMANTICDB Tags save file
(semanticdb-project-database-file "semanticdb-project-database-file"
:tables
(list
(semanticdb-table "semanticdb-table"
:major-mode c-mode
:tags nil
:file "test.c"
:pointmax 1
:unmatched-syntax nil))
:file "!home!balazs!Code!semantic.cache"
:semantic-tag-version "2.0"
:semanticdb-version "2.2")

17
smex-items Normal file
View file

@ -0,0 +1,17 @@
;; ----- smex-history -----
(
load-file
customize
cd
5x5
arp
dbx
dig
)
;; ----- smex-data -----
(
(customize . 1)
(load-file . 1)
)

Binary file not shown.

View file

@ -0,0 +1,90 @@
HTTP/1.1 200 OK
Date: Sun, 07 Jun 2020 09:17:38 GMT
Content-Type: image/svg+xml
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: __cfduid=db9753a37ada4e95bc954afc7ffaf1fdf1591521458; expires=Tue, 07-Jul-20 09:17:38 GMT; path=/; domain=.srix.cf; HttpOnly; SameSite=Lax
Last-Modified: Sun, 30 Jun 2019 11:04:09 GMT
ETag: W/"205b-58c88788e224e"
Cache-Control: max-age=14400
CF-Cache-Status: MISS
cf-request-id: 032fab52140000d42fe6171200000001
Vary: Accept-Encoding
Server: cloudflare
CF-RAY: 59f947fcef28d42f-BUD
Content-Encoding: gzip
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="612px" height="792px" viewBox="0 0 612 792" enable-background="new 0 0 612 792" xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" stroke="#000000" stroke-width="2.9999" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="22.9256" d="
M400.419,451.252c7.724,8.437,21.051,22.484,30.155,36.325c9.104,13.84,13.983,27.474,17.324,37.172
c3.34,9.698,5.141,15.461,4.061,21.854c-1.081,6.394-5.043,13.418-12.337,19.991s-17.92,12.697-24.313,17.74
s-8.555,9.005-7.924,18.821c0.63,9.815,4.051,25.483,10.009,34.081c5.957,8.596,14.45,10.121,22.195,10.481
c7.744,0.36,14.739-0.444,23.82,2.216c9.081,2.659,20.247,8.783,22.049,15.267c1.801,6.483-5.764,13.328-8.284,14.408
c-2.521,1.08-0.001-3.602-2.128-6.817c-2.127-3.215-8.902-4.962-16.388-6.286c-7.485-1.323-15.681-2.225-17.335-1.171
c-1.655,1.055,3.229,4.063,6.032,7.188s3.522,6.366,2.082,10.509c-1.441,4.143-5.043,9.186-5.943,9.545
c-0.9,0.36,0.9-3.961-4.143-9.904c-5.043-5.944-16.93-13.509-27.556-18.191s-19.991-6.483-27.071-6.682s-11.875,1.205-13.808,3.546
c-1.932,2.341-1.001,5.617-2.138,6.116c-1.136,0.498-4.34-1.782-6.55-5.743c-2.211-3.961-3.427-9.604-1.874-14.406
c1.552-4.804,5.875-8.766,10.737-10.386c4.862-1.621,10.266-0.901,9.905-8.465c-0.359-7.565-6.483-23.414-10.986-33.859
c-4.502-10.446-7.384-15.49-4.411-19.81s11.8-7.917,19.445-12.572s14.111-10.369,16.375-15.71s0.327-10.31-3.717-15.739
c-4.044-5.431-10.194-11.323-19.573-19.672c-4.526-4.029-9.804-8.631-14.985-13.549c-2.135,9.545-4.575,19.553-6.563,28.208
c-2.801,12.185-4.706,21.687-17.499,28.839s-36.474,11.956-49.847,18.709c-13.374,6.754-16.439,15.456-17.321,26.089
c-0.88,10.632,0.424,23.194,3.14,30.886c2.117,5.995,5.092,9.031,9.484,11.417c4.531,0.544,9.604,1.337,15.314,3.268
c8.315,2.811,17.982,8.032,19.768,14.259c1.786,6.225-4.31,13.455-6.342,14.618c-2.032,1.162,0-3.742-3.437-7.642
c-3.436-3.901-12.34-6.799-18.969-8.204c-6.629-1.406-10.984-1.319-10.549-0.393c0.436,0.927,5.662,2.693,8.517,6.045
c2.855,3.351,3.341,8.286,2.132,13.401c-1.209,5.116-4.112,10.411-4.838,10.8c-0.726,0.389,0.725-4.13-3.339-10.222
c-4.064-6.094-13.644-13.761-22.207-18.454c-8.564-4.693-16.111-6.414-22.166-8.279c-6.054-1.865-10.614-3.876-13.974-3.756
c-3.361,0.12-5.522,2.372-6.243,4.804c-0.72,2.432,0,5.043-1.891,3.917s-6.394-5.988-6.753-11.076
c-0.36-5.088,3.421-10.401,7.076-13.105c3.656-2.704,7.184-2.801,11.125-2.519c0.59,0.043,1.19,0.094,1.803,0.155
c3.345-0.093,7.438,0.595,10.571,0.157c4.376-0.613,6.881-3.424,7.653-9.986c0.772-6.564-0.188-16.88-1.089-30.117
s-1.741-29.396-0.504-37.97c1.237-8.573,4.55-9.561,8.783-10.821c4.232-1.261,9.383-2.795,18.704-4.345
c9.32-1.55,22.812-3.115,29.926-9.148c7.114-6.034,7.851-16.535,2.444-30.359c-4.02-10.277-11.434-22.391-14.826-32.851
c-8.195-17.208,8.496-48.972,10.643-68.426c0.975-8.839,0.364-8.657,0.002-12.681c-9.46,2.513-28.016,24.671-34.598,30.541
c-6.583,5.87-7.384,12.787-7.744,23.594c-0.36,10.806-0.36,25.574-1.261,38.542c-0.9,12.967-2.702,24.133-5.223,33.498
c-2.521,9.366-5.763,16.93-13.778,25.574c-8.015,8.646-20.802,18.371-33.949,20.893s-26.655-2.161-27.646-4.683
s10.536-2.882,20.081-4.683c9.545-1.801,17.11-5.043,23.234-10.806c6.123-5.764,10.805-14.049,9.725-15.67
c-1.08-1.62-7.925,3.422-16.57,7.564c-8.645,4.143-19.091,7.384-29.987,5.764c-10.896-1.621-22.243-8.104-28.906-17.11
c-6.664-9.005-8.645-20.531-7.744-23.323c0.9-2.792,4.682,3.152,9.906,10.176c5.222,7.024,11.887,15.129,23.503,17.561
c11.616,2.431,28.186-0.811,38.271-9.995c10.086-9.186,13.688-24.314,11.166-31.879c-2.521-7.563-11.167-7.563-19.451-4.862
s-16.209,8.104-18.759,13.042c-2.55,4.938,0.274,9.409-1.527,9.949c-1.801,0.541-8.228-2.851-9.64-9.769
c-1.412-6.919,2.189-17.365,8.674-23.038c6.483-5.674,15.849-6.574,23.773-7.385c7.924-0.811,14.408-1.53,18.01-5.043
c3.603-3.512,4.322-9.815,3.782-17.109c-0.54-7.294-2.341-15.579-4.143-24.404c-1.801-8.824-3.602-18.19,3.962-26.834
c7.564-8.645,24.495-16.57,34.76-27.196c10.266-10.626,13.868-23.954,19.631-32.238c12-17.25-0.566-20.284-22.515-25.573
c-14.949-3.603-31.879-5.042-47.188-2.882c-15.309,2.161-28.997,7.925-40.883,17.11c-11.887,9.186-21.972,21.792-23.414,19.631
c-1.441-2.161,5.764-19.091,17.291-35.3c11.526-16.209,27.375-31.698,33.138-40.704c5.763-9.005,1.441-11.525-8.825-12.606
c-10.266-1.081-26.476-0.72-40.523,4.142c-14.048,4.863-25.935,14.229-32.418,26.475c-6.484,12.248-7.564,27.376-9.906,22.513
c-2.342-4.862-5.943-29.717-3.242-48.268c2.701-18.55,11.706-30.797,3.602-30.617s-33.319,12.787-51.275,28.275
c-17.957,15.489-28.656,33.86-26.495,23.954s17.183-48.087,38.021-77.624s47.494-50.429,72.708-61.235
c25.214-10.806,48.988-11.527,57.453-13.688c8.465-2.161,1.621-5.763-7.745-7.924c-9.365-2.162-21.251-2.882-13.236-5.404
c8.015-2.522,35.933-6.846,62.048,1.979c26.115,8.825,50.426,30.799,69.246,45.928c18.819,15.129,32.146,23.415,26.384,32.42
c-5.763,9.005-30.617,18.73-43.944,34.759c-13.328,16.029-15.129,38.362-0.18,53.31c6.486,6.486,13.891,9.218,21.989,13.313
c5.618,2.842,10.114,4.606,16.8,3.978s15.561-3.648,19.663-9.44c4.103-5.792,3.434-14.357,0.23-18.511
c-1.266-1.643-2.928-2.595-4.716-3.355c-5.846,0.548-11.213,0.14-15.587-2.279c-10.762-5.953-15.507-24.076-7.441-39.969
s28.94-29.557,52.521-35.67c23.58-6.113,49.867-4.676,67.674,1.977s27.135,18.52,31.543,30.157
c4.407,11.637,3.896,23.042,4.031,32.16s0.915,15.948,8.567,22.182c7.651,6.234,22.175,11.874,34.665,15.64
c12.489,3.768,22.944,5.664,30.496,12.31c7.551,6.646,12.198,18.044,15.242,31.376c3.043,13.332,4.481,28.6,2.095,39.461
c-2.387,10.861-8.601,17.317-10.433,16.75s0.718-8.157,1.054-17.772s-1.542-21.254-4.352-30.15
c-2.81-8.897-6.549-15.051-13.736-19.25c-7.188-4.2-17.822-6.444-28.398-9.286c-10.575-2.842-21.094-6.28-29.174-11.833
s-13.724-13.219-14.791-12.781c-1.068,0.439,2.439,8.981,9.446,17.504c7.006,8.523,17.511,17.025,26.738,25.042
c9.227,8.016,17.174,15.545,21.548,24.475c4.374,8.929,5.174,19.257,5.916,30.184c0.742,10.925,1.427,22.448,8.316,32.166
c6.89,9.717,19.984,17.629,21.628,20.563c1.643,2.935-8.167,0.891-18.224-4.794c-10.058-5.685-20.362-15.012-26.438-26.278
c-6.075-11.266-7.921-24.47-10.572-34.376c-2.649-9.906-6.104-16.515-12.746-22.59c-6.644-6.075-16.474-11.618-24.495-17.477
c-8.022-5.859-14.236-12.034-18.23-19.298c-3.993-7.264-5.768-15.616-7.146-15.981c-1.38-0.366-2.365,7.256-0.852,16.448
c1.515,9.192,5.529,19.956,11.215,27.807c5.685,7.851,13.041,12.791,18.658,19.489c5.615,6.699,9.493,15.158,9.376,16.352
c-0.116,1.195-4.227-4.875-11.255-10.083c-7.029-5.208-16.975-9.557-25.182-15.664c-8.208-6.107-14.675-13.975-20.052-25.594
c-1.51-3.263-4.974-16.376-7.897-16.683c-3.418-0.358-7.729,1.644-8.924,6.348c-1.194,4.704,0.728,12.108,2.182,17.397
c1.51,5.498,3.341,10.898,4.683,16.443c3.805,15.726,1.95,21.958,1.791,31.82c-0.16,9.862,1.372,23.354,5.344,31.351
c3.971,7.998,10.382,10.5,20.709,13.703c10.326,3.203,24.57,7.104,36.839,11.4c12.269,4.295,22.562,8.981,30.928,13.889
c8.366,4.906,14.805,10.031,21.024,20.045c6.221,10.015,12.221,24.917,11.18,38.264c-1.042,13.347-9.128,25.137-11.821,25.426
s0.005-10.924,0.79-20.605s-0.343-17.834-4.282-25.263c-3.941-7.429-10.695-14.134-12.543-13.52
c-1.849,0.613,1.206,8.547,2.917,17.979c1.711,9.432,2.077,20.363-2.365,30.443c-4.441,10.081-13.693,19.311-24.14,23.358
s-22.086,2.913-24.54,1.307s4.276-3.684,12.432-6.864c8.153-3.182,17.731-7.468,23.146-18.029
c5.413-10.561,6.665-27.398,0.472-39.553c-6.194-12.154-19.834-19.625-27.795-19.192c-7.962,0.434-10.246,8.771-9.829,17.476
c0.416,8.704,3.533,17.774,7.622,21.538c4.088,3.765,9.147,2.222,9.191,4.102c0.046,1.88-4.923,7.182-11.969,6.716
c-7.046-0.467-16.169-6.7-19.927-14.453c-3.759-7.752-2.153-17.022-0.841-24.88c1.313-7.856,2.331-14.3-0.104-18.703
c-2.436-4.4-8.324-6.761-15.502-8.168c-7.179-1.405-15.645-1.857-24.106-5.722c-8.461-3.864-16.918-11.141-22.731-23.99
c-2.383-5.268-4.322-11.472-6.336-17.609l-0.01,0.023C380.281,416.313,385.828,435.317,400.419,451.252z"/>
</svg>

14
url/cookies Normal file
View file

@ -0,0 +1,14 @@
;; Emacs-W3 HTTP cookies file
;; Automatically generated file!!! DO NOT EDIT!!!
(setq url-cookie-storage
'((".srix.cf"
[url-cookie "__cfduid" "d50deb4c4d478e955c3058531670347f71591521457" "Tue, 07-Jul-20 09:17:37 GMT" "/" ".srix.cf" nil]))
)
(setq url-cookie-secure-storage
'nil)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; End:

0
url/cookies~ Normal file
View file