Guest User

Untitled

a guest
Feb 26th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.42 KB | None | 0 0
  1. ;; -*- mode: emacs-lisp; lexical-binding: t -*-
  2. ;; This file is loaded by Spacemacs at startup.
  3. ;; It must be stored in your home directory.
  4.  
  5. (defun dotspacemacs/layers ()
  6. "Layer configuration:
  7. This function should only modify configuration layer settings."
  8. (setq-default
  9. ;; Base distribution to use. This is a layer contained in the directory
  10. ;; `+distribution'. For now available distributions are `spacemacs-base'
  11. ;; or `spacemacs'. (default 'spacemacs)
  12. dotspacemacs-distribution 'spacemacs
  13.  
  14. ;; Lazy installation of layers (i.e. layers are installed only when a file
  15. ;; with a supported type is opened). Possible values are `all', `unused'
  16. ;; and `nil'. `unused' will lazy install only unused layers (i.e. layers
  17. ;; not listed in variable `dotspacemacs-configuration-layers'), `all' will
  18. ;; lazy install any layer that support lazy installation even the layers
  19. ;; listed in `dotspacemacs-configuration-layers'. `nil' disable the lazy
  20. ;; installation feature and you have to explicitly list a layer in the
  21. ;; variable `dotspacemacs-configuration-layers' to install it.
  22. ;; (default 'unused)
  23. dotspacemacs-enable-lazy-installation 'unused
  24.  
  25. ;; If non-nil then Spacemacs will ask for confirmation before installing
  26. ;; a layer lazily. (default t)
  27. dotspacemacs-ask-for-lazy-installation t
  28.  
  29. ;; List of additional paths where to look for configuration layers.
  30. ;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
  31. dotspacemacs-configuration-layer-path '()
  32.  
  33. ;; List of configuration layers to load.
  34. dotspacemacs-configuration-layers
  35. '(python
  36. rust
  37. ess
  38. ;; ----------------------------------------------------------------
  39. ;; Example of useful layers you may want to use right away.
  40. ;; Uncomment some layer names and press `SPC f e R' (Vim style) or
  41. ;; `M-m f e R' (Emacs style) to install them.
  42. ;; ----------------------------------------------------------------
  43. auto-completion
  44. ;; better-defaults
  45. themes-megapack
  46. emacs-lisp
  47. git
  48. helm
  49. lsp
  50. ;; markdown
  51. multiple-cursors
  52. org
  53. ;; (shell :variables
  54. ;; shell-default-height 30
  55. ;; shell-default-position 'bottom)
  56. ;; spell-checking
  57. ;; syntax-checking
  58. treemacs
  59. ;; version-control
  60. )
  61.  
  62. ;; List of additional packages that will be installed without being
  63. ;; wrapped in a layer. If you need some configuration for these
  64. ;; packages, then consider creating a layer. You can also put the
  65. ;; configuration in `dotspacemacs/user-config'.
  66. ;; To use a local version of a package, use the `:location' property:
  67. ;; '(your-package :location "~/path/to/your-package/")
  68. ;; Also include the dependencies as they will not be resolved automatically.
  69. dotspacemacs-additional-packages '(
  70. mwim
  71. )
  72.  
  73. ;; A list of packages that cannot be updated.
  74. dotspacemacs-frozen-packages '()
  75.  
  76. ;; A list of packages that will not be installed and loaded.
  77. dotspacemacs-excluded-packages '()
  78.  
  79. ;; Defines the behaviour of Spacemacs when installing packages.
  80. ;; Possible values are `used-only', `used-but-keep-unused' and `all'.
  81. ;; `used-only' installs only explicitly used packages and deletes any unused
  82. ;; packages as well as their unused dependencies. `used-but-keep-unused'
  83. ;; installs only the used packages but won't delete unused ones. `all'
  84. ;; installs *all* packages supported by Spacemacs and never uninstalls them.
  85. ;; (default is `used-only')
  86. dotspacemacs-install-packages 'used-only))
  87.  
  88. (defun dotspacemacs/init ()
  89. "Initialization:
  90. This function is called at the very beginning of Spacemacs startup,
  91. before layer configuration.
  92. It should only modify the values of Spacemacs settings."
  93. ;; This setq-default sexp is an exhaustive list of all the supported
  94. ;; spacemacs settings.
  95. (setq-default
  96. ;; If non-nil then enable support for the portable dumper. You'll need
  97. ;; to compile Emacs 27 from source following the instructions in file
  98. ;; EXPERIMENTAL.org at to root of the git repository.
  99. ;; (default nil)
  100. dotspacemacs-enable-emacs-pdumper nil
  101.  
  102. ;; Name of executable file pointing to emacs 27+. This executable must be
  103. ;; in your PATH.
  104. ;; (default "emacs")
  105. dotspacemacs-emacs-pdumper-executable-file "emacs"
  106.  
  107. ;; Name of the Spacemacs dump file. This is the file will be created by the
  108. ;; portable dumper in the cache directory under dumps sub-directory.
  109. ;; To load it when starting Emacs add the parameter `--dump-file'
  110. ;; when invoking Emacs 27.1 executable on the command line, for instance:
  111. ;; ./emacs --dump-file=~/.emacs.d/.cache/dumps/spacemacs.pdmp
  112. ;; (default spacemacs.pdmp)
  113. dotspacemacs-emacs-dumper-dump-file "spacemacs.pdmp"
  114.  
  115. ;; If non-nil ELPA repositories are contacted via HTTPS whenever it's
  116. ;; possible. Set it to nil if you have no way to use HTTPS in your
  117. ;; environment, otherwise it is strongly recommended to let it set to t.
  118. ;; This variable has no effect if Emacs is launched with the parameter
  119. ;; `--insecure' which forces the value of this variable to nil.
  120. ;; (default t)
  121. dotspacemacs-elpa-https t
  122.  
  123. ;; Maximum allowed time in seconds to contact an ELPA repository.
  124. ;; (default 5)
  125. dotspacemacs-elpa-timeout 5
  126.  
  127. ;; Set `gc-cons-threshold' and `gc-cons-percentage' when startup finishes.
  128. ;; This is an advanced option and should not be changed unless you suspect
  129. ;; performance issues due to garbage collection operations.
  130. ;; (default '(100000000 0.1))
  131. dotspacemacs-gc-cons '(100000000 0.1)
  132.  
  133. ;; If non-nil then Spacelpa repository is the primary source to install
  134. ;; a locked version of packages. If nil then Spacemacs will install the
  135. ;; latest version of packages from MELPA. (default nil)
  136. dotspacemacs-use-spacelpa nil
  137.  
  138. ;; If non-nil then verify the signature for downloaded Spacelpa archives.
  139. ;; (default t)
  140. dotspacemacs-verify-spacelpa-archives t
  141.  
  142. ;; If non-nil then spacemacs will check for updates at startup
  143. ;; when the current branch is not `develop'. Note that checking for
  144. ;; new versions works via git commands, thus it calls GitHub services
  145. ;; whenever you start Emacs. (default nil)
  146. dotspacemacs-check-for-update nil
  147.  
  148. ;; If non-nil, a form that evaluates to a package directory. For example, to
  149. ;; use different package directories for different Emacs versions, set this
  150. ;; to `emacs-version'. (default 'emacs-version)
  151. dotspacemacs-elpa-subdirectory 'emacs-version
  152.  
  153. ;; One of `vim', `emacs' or `hybrid'.
  154. ;; `hybrid' is like `vim' except that `insert state' is replaced by the
  155. ;; `hybrid state' with `emacs' key bindings. The value can also be a list
  156. ;; with `:variables' keyword (similar to layers). Check the editing styles
  157. ;; section of the documentation for details on available variables.
  158. ;; (default 'vim)
  159. dotspacemacs-editing-style 'emacs
  160.  
  161. ;; Specify the startup banner. Default value is `official', it displays
  162. ;; the official spacemacs logo. An integer value is the index of text
  163. ;; banner, `random' chooses a random text banner in `core/banners'
  164. ;; directory. A string value must be a path to an image format supported
  165. ;; by your Emacs build.
  166. ;; If the value is nil then no banner is displayed. (default 'official)
  167. dotspacemacs-startup-banner 'official
  168.  
  169. ;; List of items to show in startup buffer or an association list of
  170. ;; the form `(list-type . list-size)`. If nil then it is disabled.
  171. ;; Possible values for list-type are:
  172. ;; `recents' `bookmarks' `projects' `agenda' `todos'.
  173. ;; List sizes may be nil, in which case
  174. ;; `spacemacs-buffer-startup-lists-length' takes effect.
  175. dotspacemacs-startup-lists '((recents . 5)
  176. (projects . 7))
  177.  
  178. ;; True if the home buffer should respond to resize events. (default t)
  179. dotspacemacs-startup-buffer-responsive t
  180.  
  181. ;; Default major mode for a new empty buffer. Possible values are mode
  182. ;; names such as `text-mode'; and `nil' to use Fundamental mode.
  183. ;; (default `text-mode')
  184. dotspacemacs-new-empty-buffer-major-mode 'text-mode
  185.  
  186. ;; Default major mode of the scratch buffer (default `text-mode')
  187. dotspacemacs-scratch-mode 'text-mode
  188.  
  189. ;; Initial message in the scratch buffer, such as "Welcome to Spacemacs!"
  190. ;; (default nil)
  191. dotspacemacs-initial-scratch-message nil
  192.  
  193. ;; List of themes, the first of the list is loaded when spacemacs starts.
  194. ;; Press `SPC T n' to cycle to the next theme in the list (works great
  195. ;; with 2 themes variants, one dark and one light)
  196. dotspacemacs-themes '(ample
  197. ample-light)
  198.  
  199. ;; Set the theme for the Spaceline. Supported themes are `spacemacs',
  200. ;; `all-the-icons', `custom', `doom', `vim-powerline' and `vanilla'. The
  201. ;; first three are spaceline themes. `doom' is the doom-emacs mode-line.
  202. ;; `vanilla' is default Emacs mode-line. `custom' is a user defined themes,
  203. ;; refer to the DOCUMENTATION.org for more info on how to create your own
  204. ;; spaceline theme. Value can be a symbol or list with additional properties.
  205. ;; (default '(spacemacs :separator wave :separator-scale 1.5))
  206. dotspacemacs-mode-line-theme '(spacemacs :separator wave :separator-scale 1.5)
  207.  
  208. ;; If non-nil the cursor color matches the state color in GUI Emacs.
  209. ;; (default t)
  210. dotspacemacs-colorize-cursor-according-to-state t
  211.  
  212. ;; Default font or prioritized list of fonts.
  213. dotspacemacs-default-font '("Source Code Pro"
  214. :size 10.0
  215. :weight normal
  216. :width normal)
  217.  
  218. ;; The leader key (default "SPC")
  219. dotspacemacs-leader-key "SPC"
  220.  
  221. ;; The key used for Emacs commands `M-x' (after pressing on the leader key).
  222. ;; (default "SPC")
  223. dotspacemacs-emacs-command-key "SPC"
  224.  
  225. ;; The key used for Vim Ex commands (default ":")
  226. dotspacemacs-ex-command-key ":"
  227.  
  228. ;; The leader key accessible in `emacs state' and `insert state'
  229. ;; (default "M-m")
  230. dotspacemacs-emacs-leader-key "M-m"
  231.  
  232. ;; Major mode leader key is a shortcut key which is the equivalent of
  233. ;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",")
  234. dotspacemacs-major-mode-leader-key ","
  235.  
  236. ;; Major mode leader key accessible in `emacs state' and `insert state'.
  237. ;; (default "C-M-m")
  238. dotspacemacs-major-mode-emacs-leader-key "C-M-m"
  239.  
  240. ;; These variables control whether separate commands are bound in the GUI to
  241. ;; the key pairs `C-i', `TAB' and `C-m', `RET'.
  242. ;; Setting it to a non-nil value, allows for separate commands under `C-i'
  243. ;; and TAB or `C-m' and `RET'.
  244. ;; In the terminal, these pairs are generally indistinguishable, so this only
  245. ;; works in the GUI. (default nil)
  246. dotspacemacs-distinguish-gui-tab nil
  247.  
  248. ;; Name of the default layout (default "Default")
  249. dotspacemacs-default-layout-name "Default"
  250.  
  251. ;; If non-nil the default layout name is displayed in the mode-line.
  252. ;; (default nil)
  253. dotspacemacs-display-default-layout nil
  254.  
  255. ;; If non-nil then the last auto saved layouts are resumed automatically upon
  256. ;; start. (default nil)
  257. dotspacemacs-auto-resume-layouts nil
  258.  
  259. ;; If non-nil, auto-generate layout name when creating new layouts. Only has
  260. ;; effect when using the "jump to layout by number" commands. (default nil)
  261. dotspacemacs-auto-generate-layout-names nil
  262.  
  263. ;; Size (in MB) above which spacemacs will prompt to open the large file
  264. ;; literally to avoid performance issues. Opening a file literally means that
  265. ;; no major mode or minor modes are active. (default is 1)
  266. dotspacemacs-large-file-size 1
  267.  
  268. ;; Location where to auto-save files. Possible values are `original' to
  269. ;; auto-save the file in-place, `cache' to auto-save the file to another
  270. ;; file stored in the cache directory and `nil' to disable auto-saving.
  271. ;; (default 'cache)
  272. dotspacemacs-auto-save-file-location 'cache
  273.  
  274. ;; Maximum number of rollback slots to keep in the cache. (default 5)
  275. dotspacemacs-max-rollback-slots 5
  276.  
  277. ;; If non-nil, the paste transient-state is enabled. While enabled, after you
  278. ;; paste something, pressing `C-j' and `C-k' several times cycles through the
  279. ;; elements in the `kill-ring'. (default nil)
  280. dotspacemacs-enable-paste-transient-state nil
  281.  
  282. ;; Which-key delay in seconds. The which-key buffer is the popup listing
  283. ;; the commands bound to the current keystroke sequence. (default 0.4)
  284. dotspacemacs-which-key-delay 0.4
  285.  
  286. ;; Which-key frame position. Possible values are `right', `bottom' and
  287. ;; `right-then-bottom'. right-then-bottom tries to display the frame to the
  288. ;; right; if there is insufficient space it displays it at the bottom.
  289. ;; (default 'bottom)
  290. dotspacemacs-which-key-position 'bottom
  291.  
  292. ;; Control where `switch-to-buffer' displays the buffer. If nil,
  293. ;; `switch-to-buffer' displays the buffer in the current window even if
  294. ;; another same-purpose window is available. If non-nil, `switch-to-buffer'
  295. ;; displays the buffer in a same-purpose window even if the buffer can be
  296. ;; displayed in the current window. (default nil)
  297. dotspacemacs-switch-to-buffer-prefers-purpose nil
  298.  
  299. ;; If non-nil a progress bar is displayed when spacemacs is loading. This
  300. ;; may increase the boot time on some systems and emacs builds, set it to
  301. ;; nil to boost the loading time. (default t)
  302. dotspacemacs-loading-progress-bar t
  303.  
  304. ;; If non-nil the frame is fullscreen when Emacs starts up. (default nil)
  305. ;; (Emacs 24.4+ only)
  306. dotspacemacs-fullscreen-at-startup nil
  307.  
  308. ;; If non-nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
  309. ;; Use to disable fullscreen animations in OSX. (default nil)
  310. dotspacemacs-fullscreen-use-non-native nil
  311.  
  312. ;; If non-nil the frame is maximized when Emacs starts up.
  313. ;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
  314. ;; (default nil) (Emacs 24.4+ only)
  315. dotspacemacs-maximized-at-startup nil
  316.  
  317. ;; If non-nil the frame is undecorated when Emacs starts up. Combine this
  318. ;; variable with `dotspacemacs-maximized-at-startup' in OSX to obtain
  319. ;; borderless fullscreen. (default nil)
  320. dotspacemacs-undecorated-at-startup nil
  321.  
  322. ;; A value from the range (0..100), in increasing opacity, which describes
  323. ;; the transparency level of a frame when it's active or selected.
  324. ;; Transparency can be toggled through `toggle-transparency'. (default 90)
  325. dotspacemacs-active-transparency 90
  326.  
  327. ;; A value from the range (0..100), in increasing opacity, which describes
  328. ;; the transparency level of a frame when it's inactive or deselected.
  329. ;; Transparency can be toggled through `toggle-transparency'. (default 90)
  330. dotspacemacs-inactive-transparency 90
  331.  
  332. ;; If non-nil show the titles of transient states. (default t)
  333. dotspacemacs-show-transient-state-title t
  334.  
  335. ;; If non-nil show the color guide hint for transient state keys. (default t)
  336. dotspacemacs-show-transient-state-color-guide t
  337.  
  338. ;; If non-nil unicode symbols are displayed in the mode line.
  339. ;; If you use Emacs as a daemon and wants unicode characters only in GUI set
  340. ;; the value to quoted `display-graphic-p'. (default t)
  341. dotspacemacs-mode-line-unicode-symbols t
  342.  
  343. ;; If non-nil smooth scrolling (native-scrolling) is enabled. Smooth
  344. ;; scrolling overrides the default behavior of Emacs which recenters point
  345. ;; when it reaches the top or bottom of the screen. (default t)
  346. dotspacemacs-smooth-scrolling t
  347.  
  348. ;; Control line numbers activation.
  349. ;; If set to `t', `relative' or `visual' then line numbers are enabled in all
  350. ;; `prog-mode' and `text-mode' derivatives. If set to `relative', line
  351. ;; numbers are relative. If set to `visual', line numbers are also relative,
  352. ;; but lines are only visual lines are counted. For example, folded lines
  353. ;; will not be counted and wrapped lines are counted as multiple lines.
  354. ;; This variable can also be set to a property list for finer control:
  355. ;; '(:relative nil
  356. ;; :visual nil
  357. ;; :disabled-for-modes dired-mode
  358. ;; doc-view-mode
  359. ;; markdown-mode
  360. ;; org-mode
  361. ;; pdf-view-mode
  362. ;; text-mode
  363. ;; :size-limit-kb 1000)
  364. ;; When used in a plist, `visual' takes precedence over `relative'.
  365. ;; (default nil)
  366. dotspacemacs-line-numbers 't
  367.  
  368. ;; Code folding method. Possible values are `evil' and `origami'.
  369. ;; (default 'evil)
  370. dotspacemacs-folding-method 'evil
  371.  
  372. ;; If non-nil `smartparens-strict-mode' will be enabled in programming modes.
  373. ;; (default nil)
  374. dotspacemacs-smartparens-strict-mode nil
  375.  
  376. ;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
  377. ;; over any automatically added closing parenthesis, bracket, quote, etc...
  378. ;; This can be temporary disabled by pressing `C-q' before `)'. (default nil)
  379. dotspacemacs-smart-closing-parenthesis nil
  380.  
  381. ;; Select a scope to highlight delimiters. Possible values are `any',
  382. ;; `current', `all' or `nil'. Default is `all' (highlight any scope and
  383. ;; emphasis the current one). (default 'all)
  384. dotspacemacs-highlight-delimiters 'all
  385.  
  386. ;; If non-nil, start an Emacs server if one is not already running.
  387. ;; (default nil)
  388. dotspacemacs-enable-server nil
  389.  
  390. ;; Set the emacs server socket location.
  391. ;; If nil, uses whatever the Emacs default is, otherwise a directory path
  392. ;; like \"~/.emacs.d/server\". It has no effect if
  393. ;; `dotspacemacs-enable-server' is nil.
  394. ;; (default nil)
  395. dotspacemacs-server-socket-dir nil
  396.  
  397. ;; If non-nil, advise quit functions to keep server open when quitting.
  398. ;; (default nil)
  399. dotspacemacs-persistent-server nil
  400.  
  401. ;; List of search tool executable names. Spacemacs uses the first installed
  402. ;; tool of the list. Supported tools are `rg', `ag', `pt', `ack' and `grep'.
  403. ;; (default '("rg" "ag" "pt" "ack" "grep"))
  404. dotspacemacs-search-tools '("rg" "ag" "pt" "ack" "grep")
  405.  
  406. ;; Format specification for setting the frame title.
  407. ;; %a - the `abbreviated-file-name', or `buffer-name'
  408. ;; %t - `projectile-project-name'
  409. ;; %I - `invocation-name'
  410. ;; %S - `system-name'
  411. ;; %U - contents of $USER
  412. ;; %b - buffer name
  413. ;; %f - visited file name
  414. ;; %F - frame name
  415. ;; %s - process status
  416. ;asldk;as
  417. ;-
  418. ;percent of buffer abdotove top of window, or Top, Bot or All
  419. ;; %P - percent of buffer above bottom of window, perhaps plus Top, or Bot or All
  420. ;; %m - mode name
  421. ;; %n - Narrow if appropriate
  422. ;; %z - mnemonics of buffer, terminal, and keyboard coding systems
  423. ;; %Z - like %z, but including the end-of-line format
  424. ;; (default "%I@%S")
  425. dotspacemacs-frame-title-format "%I@%S"
  426.  
  427. ;; Format specification for setting the icon title format
  428. ;; (default nil - same as frame-title-format)
  429. dotspacemacs-icon-title-format nil
  430.  
  431. ;; Delete whitespace while saving buffer. Possible values are `all'
  432. ;; to aggressively delete empty line and long sequences of whitespace,
  433. ;; `trailing' to delete only the whitespace at end of lines, `changed' to
  434. ;; delete only whitespace for changed lines or `nil' to disable cleanup.
  435. ;; (default nil)
  436. dotspacemacs-whitespace-cleanup nil
  437.  
  438. ;; Either nil or a number of seconds. If non-nil zone out after the specified
  439. ;; number of seconds. (default nil)
  440. dotspacemacs-zone-out-when-idle nil
  441.  
  442. ;; Run `spacemacs/prettify-org-buffer' when
  443. ;; visiting README.org files of Spacemacs.
  444. ;; (default nil)
  445. dotspacemacs-pretty-docs nil))
  446.  
  447. (defun dotspacemacs/user-env ()
  448. "Environment variables setup.
  449. This function defines the environment variables for your Emacs session. By
  450. default it calls `spacemacs/load-spacemacs-env' which loads the environment
  451. variables declared in `~/.spacemacs.env' or `~/.spacemacs.d/.spacemacs.env'.
  452. See the header of this file for more information."
  453. (spacemacs/load-spacemacs-env))
  454.  
  455. (defun dotspacemacs/user-init ()
  456. "Initialization for user code:
  457. This function is called immediately after `dotspacemacs/init', before layer
  458. configuration.
  459. It is mostly for variables that should be set before packages are loaded.
  460. If you are unsure, try setting them in `dotspacemacs/user-config' first."
  461. (setq lsp-keymap-prefix "M-#")
  462. )
  463.  
  464. (defun dotspacemacs/user-load ()
  465. "Library to load while dumping.
  466. This function is called only while dumping Spacemacs configuration. You can
  467. `require' or `load' the libraries of your choice that will be included in the
  468. dump."
  469.  
  470. )
  471.  
  472. (defun dotspacemacs/user-config ()
  473. "Configuration for user code:
  474. This function is called at the very end of Spacemacs startup, after layer
  475. configuration.
  476. Put your configuration code here, except for variables that should be set
  477. before packages are loaded."
  478.  
  479. ;; Set C-e to go to the end of the line but not comments
  480. (global-set-key (kbd "C-e") 'mwim-end)
  481. (setq rust-format-on-save t)
  482.  
  483. (with-eval-after-load 'rust-mode
  484. (define-key rust-mode-map (kbd "C-q") 'my-cargo-run))
  485. (defun my-cargo-run ()
  486. "Build and run Rust code."
  487. (interactive)
  488. (cargo-process-run)
  489. (let (
  490. (orig-win (selected-window))
  491. (run-win (display-buffer (get-buffer "*Cargo Run*") nil 'visible))
  492. )
  493. (select-window run-win)
  494. (comint-mode)
  495. (read-only-mode 0)
  496. (end-of-buffer)
  497. )
  498. )
  499. (set-face-attribute 'comint-highlight-prompt nil
  500. :inherit nil)
  501. )
  502.  
  503. ;; Do not write anything past this comment. This is where Emacs will
  504. ;; auto-generate custom variable definitions.
  505. (defun dotspacemacs/emacs-custom-settings ()
  506. "Emacs custom settings.
  507. This is an auto-generated function, do not modify its content directly, use
  508. Emacs customize menu instead.
  509. This function is called at the very end of Spacemacs initialization."
  510. (custom-set-variables
  511. ;; custom-set-variables was added by Custom.
  512. ;; If you edit it by hand, you could mess it up, so be careful.
  513. ;; Your init file should contain only one such instance.
  514. ;; If there is more than one, they won't work right.
  515. '(evil-want-Y-yank-to-eol nil)
  516. '(package-selected-packages
  517. (quote
  518. (ess-R-data-view ess julia-mode yapfify stickyfunc-enhance pytest pyenv-mode py-isort pippel pipenv pyvenv pip-requirements lsp-python-ms live-py-mode importmagic epc ctable concurrent deferred helm-pydoc helm-cscope xcscope cython-mode company-anaconda blacken anaconda-mode pythonic mwim zenburn-theme zen-and-art-theme white-sand-theme underwater-theme ujelly-theme twilight-theme twilight-bright-theme twilight-anti-bright-theme toxi-theme tao-theme tangotango-theme tango-plus-theme tango-2-theme sunny-day-theme sublime-themes subatomic256-theme subatomic-theme spacegray-theme soothe-theme solarized-theme soft-stone-theme soft-morning-theme soft-charcoal-theme smyx-theme seti-theme reverse-theme rebecca-theme railscasts-theme purple-haze-theme professional-theme planet-theme phoenix-dark-pink-theme phoenix-dark-mono-theme organic-green-theme omtose-phellack-theme oldlace-theme occidental-theme obsidian-theme noctilux-theme naquadah-theme mustang-theme monokai-theme monochrome-theme molokai-theme moe-theme minimal-theme material-theme majapahit-theme madhat2r-theme lush-theme light-soap-theme kaolin-themes jbeans-theme jazz-theme ir-black-theme inkpot-theme heroku-theme hemisu-theme hc-zenburn-theme gruvbox-theme gruber-darker-theme grandshell-theme gotham-theme gandalf-theme flatui-theme flatland-theme farmhouse-theme eziam-theme exotica-theme espresso-theme dracula-theme doom-themes django-theme darktooth-theme darkokai-theme darkmine-theme darkburn-theme dakrone-theme cyberpunk-theme color-theme-sanityinc-tomorrow color-theme-sanityinc-solarized clues-theme chocolate-theme autothemer cherry-blossom-theme busybee-theme bubbleberry-theme birds-of-paradise-plus-theme badwolf-theme apropospriate-theme anti-zenburn-theme ample-zen-theme ample-theme alect-themes afternoon-theme toml-mode racer helm-gtags ggtags flycheck-rust dap-mode bui counsel-gtags counsel swiper ivy cargo rust-mode yasnippet-snippets treemacs-magit smeargle orgit org-projectile org-category-capture org-present org-pomodoro alert log4e gntp org-mime org-download org-cliplink org-brain org-ql peg ov org-super-agenda ts magit-svn magit-section magit-gitflow magit-popup lsp-ui lsp-treemacs htmlize helm-org-rifle helm-org helm-lsp helm-gitignore helm-git-grep helm-company helm-c-yasnippet gnuplot gitignore-templates gitignore-mode gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link fuzzy flycheck-pos-tip pos-tip evil-org evil-magit magit git-commit with-editor transient company-lsp lsp-mode markdown-mode dash-functional company auto-yasnippet yasnippet ac-ispell auto-complete hybrid-mode ws-butler writeroom-mode winum which-key volatile-highlights vi-tilde-fringe uuidgen use-package treemacs-projectile treemacs-persp toc-org symon symbol-overlay string-inflection spaceline-all-the-icons restart-emacs request rainbow-delimiters popwin pcre2el password-generator paradox overseer org-plus-contrib org-bullets open-junk-file nameless move-text macrostep lorem-ipsum link-hint indent-guide hungry-delete hl-todo highlight-parentheses highlight-numbers highlight-indentation helm-xref helm-themes helm-swoop helm-purpose helm-projectile helm-mode-manager helm-make helm-ls-git helm-flx helm-descbinds helm-ag google-translate golden-ratio font-lock+ flycheck-package flycheck-elsa flx-ido fill-column-indicator fancy-battery eyebrowse expand-region evil-visualstar evil-visual-mark-mode evil-unimpaired evil-tutor evil-textobj-line evil-surround evil-numbers evil-nerd-commenter evil-mc evil-matchit evil-lisp-state evil-lion evil-indent-plus evil-iedit-state evil-goggles evil-exchange evil-escape evil-ediff evil-cleverparens evil-args evil-anzu eval-sexp-fu elisp-slime-nav editorconfig dumb-jump dotenv-mode diminish devdocs define-word column-enforce-mode clean-aindent-mode centered-cursor-mode auto-highlight-symbol auto-compile aggressive-indent ace-link ace-jump-helm-line))))
  519. (custom-set-faces
  520. ;; custom-set-faces was added by Custom.
  521. ;; If you edit it by hand, you could mess it up, so be careful.
  522. ;; Your init file should contain only one such instance.
  523. ;; If there is more than one, they won't work right.
  524. '(default ((t (:background nil)))))
  525. )
Add Comment
Please, Sign In to add comment