this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

removing spacemacs configs

-1093
-533
spacemacs
··· 1 - ;; -*- mode: emacs-lisp -*- This file is loaded by Spacemacs at startup. It must 2 - ;; be stored in your home directory. 3 - 4 - (defun dotspacemacs/layers () 5 - "Layer configuration: 6 - This function should only modify configuration layer settings." 7 - (setq-default 8 - ;; Base distribution to use. This is a layer contained in the directory 9 - ;; `+distribution'. For now available distributions are `spacemacs-base' 10 - ;; or `spacemacs'. (default 'spacemacs) dotspacemacs-distribution 'spacemacs 11 - ;; Lazy installation of layers (i.e. layers are installed only when a file 12 - ;; with a supported type is opened). Possible values are `all', `unused' 13 - ;; and `nil'. `unused' will lazy install only unused layers (i.e. layers 14 - ;; not listed in variable `dotspacemacs-configuration-layers'), `all' will 15 - ;; lazy install any layer that support lazy installation even the layers 16 - ;; listed in `dotspacemacs-configuration-layers'. `nil' disable the lazy 17 - ;; installation feature and you have to explicitly list a layer in the 18 - ;; variable `dotspacemacs-configuration-layers' to install it. 19 - ;; (default 'unused) dotspacemacs-enable-lazy-installation 'unused 20 - ;; If non-nil then Spacemacs will ask for confirmation before installing 21 - ;; a layer lazily. (default t) 22 - dotspacemacs-ask-for-lazy-installation 23 - t 24 - ;; If non-nil layers with lazy install support are lazy installed. 25 - ;; List of additional paths where to look for configuration layers. 26 - ;; Paths must have a trailing slash (i.e. `~/.mycontribs/') 27 - dotspacemacs-configuration-layer-path 28 - '("~/.local/share/spacemacs/private/") 29 - ;; List of configuration layers to load. 30 - dotspacemacs-configuration-layers 31 - '( 32 - osx 33 - (javascript :variables 34 - javascript-backend 'lsp 35 - javascript-lsp-linter nil 36 - javascript-fmt-tool 'prettier 37 - javascript-fmt-on-save t 38 - js2-basic-offset 2 39 - js-indent-level 2 40 - javascript-repl `nodejs) 41 - (typescript :variables 42 - typescript-fmt-on-save t 43 - typescript-fmt-tool 'prettier 44 - typescript-linter 'eslint) 45 - html 46 - helm 47 - syntax-checking 48 - (auto-completion (:variables 49 - auto-completion-enable-snippets-in-popup t 50 - auto-completion-enable-help-tooltip t)) 51 - (better-defaults :variables 52 - better-defaults-move-to-beginning-of-code-first t 53 - better-defaults-move-to-end-of-code-first nil) 54 - emacs-lisp 55 - git 56 - markdown 57 - treemacs 58 - (org :variables 59 - org-enable-github-support nil 60 - org-enable-reveal-js-support t) 61 - (shell :variables 62 - shell-default-height 30 63 - shell-default-position 'bottom) 64 - (spell-checking :variables 65 - spell-checking-enable-by-default nil 66 - spell-checking-enable-auto-dictionary nil 67 - enable-flyspell-auto-completion nil) 68 - python 69 - yaml 70 - shell-scripts 71 - lsp 72 - (haskell :variables 73 - haskell-completion-backend 'dante 74 - haskell-enable-ghc-mod-support nil 75 - haskell-enable-hindent t 76 - haskell-process-type 'cabal-new-repl) 77 - 78 - pandoc 79 - (latex :variables 80 - latex-build-command "LaTeX") 81 - bibtex 82 - octave 83 - 84 - (elfeed :variables 85 - rmh-elfeed-org-files (list "~/.local/share/spacemacs/private/elfeed-feedly.org")) 86 - (restclient :variables 87 - restclient-use-org t) 88 - 89 - ;; all private layers 90 - custom-lean 91 - custom-super-save 92 - custom-nix 93 - custom-haskell 94 - custom-config-org 95 - custom-config-evil 96 - custom-direnv 97 - ) 98 - ;; List of additional packages that will be installed without being 99 - ;; wrapped in a layer. If you need some configuration for these 100 - ;; packages, then consider creating a layer. You can also put the 101 - ;; configuration in `dotspacemacs/user-config'. 102 - ;; To use a local version of a package, use the `:location' property: 103 - ;; '(your-package :location "~/path/to/your-package/") 104 - ;; Also include the dependencies as they will not be resolved automatically. 105 - dotspacemacs-additional-packages 106 - '() 107 - ;; A list of packages that cannot be updated. 108 - dotspacemacs-frozen-packages 109 - '() 110 - ;; A list of packages that will not be installed and loaded. 111 - dotspacemacs-excluded-packages 112 - '() 113 - ;; Defines the behaviour of Spacemacs when installing packages. 114 - ;; Possible values are `used-only', `used-but-keep-unused' and `all'. 115 - ;; `used-only' installs only explicitly used packages and deletes any unused 116 - ;; packages as well as their unused dependencies. `used-but-keep-unused' 117 - ;; installs only the used packages but won't delete unused ones. `all' 118 - ;; installs *all* packages supported by Spacemacs and never uninstalls them. 119 - ;; (default is `used-only') 120 - dotspacemacs-install-packages 121 - 'used-only)) 122 - 123 - (defun dotspacemacs/init () 124 - "Initialization: 125 - This function is called at the very beginning of Spacemacs startup, 126 - before layer configuration. 127 - It should only modify the values of Spacemacs settings." 128 - ;; This setq-default sexp is an exhaustive list of all the supported 129 - ;; spacemacs settings. 130 - (setq-default 131 - ;; If non-nil ELPA repositories are contacted via HTTPS whenever it's 132 - ;; possible. Set it to nil if you have no way to use HTTPS in your 133 - ;; environment, otherwise it is strongly recommended to let it set to t. 134 - ;; This variable has no effect if Emacs is launched with the parameter 135 - ;; `--insecure' which forces the value of this variable to nil. 136 - ;; (default t) dotspacemacs-elpa-https nil 137 - ;; Maximum allowed time in seconds to contact an ELPA repository. 138 - ;; (default 5) dotspacemacs-elpa-timeout 5 139 - ;; Set `gc-cons-threshold' and `gc-cons-percentage' when startup finishes. 140 - ;; This is an advanced option and should not be changed unless you suspect 141 - ;; performance issues due to garbage collection operations. 142 - ;; (default '(100000000 0.1)) 143 - dotspacemacs-gc-cons 144 - '(100000000 0.1) 145 - ;; If non-nil then Spacelpa repository is the primary source to install 146 - ;; a locked version of packages. If nil then Spacemacs will install the 147 - ;; latest version of packages from MELPA. (default nil) 148 - dotspacemacs-use-spacelpa 149 - nil 150 - ;; If non-nil then verify the signature for downloaded Spacelpa archives. 151 - ;; (default nil) 152 - dotspacemacs-verify-spacelpa-archives 153 - nil 154 - ;; If non-nil then spacemacs will check for updates at startup 155 - ;; when the current branch is not `develop'. Note that checking for 156 - ;; new versions works via git commands, thus it calls GitHub services 157 - ;; whenever you start Emacs. (default nil) 158 - dotspacemacs-check-for-update 159 - nil 160 - ;; If non-nil, a form that evaluates to a package directory. For example, to 161 - ;; use different package directories for different Emacs versions, set this 162 - ;; to `emacs-version'. (default 'emacs-version) 163 - dotspacemacs-elpa-subdirectory 164 - 'emacs-version 165 - ;; One of `vim', `emacs' or `hybrid'. 166 - ;; `hybrid' is like `vim' except that `insert state' is replaced by the 167 - ;; `hybrid state' with `emacs' key bindings. The value can also be a list 168 - ;; with `:variables' keyword (similar to layers). Check the editing styles 169 - ;; section of the documentation for details on available variables. 170 - ;; (default 'vim) 171 - dotspacemacs-editing-style 172 - 'vim 173 - ;; If non-nil output loading progress in `*Messages*' buffer. (default nil) 174 - dotspacemacs-verbose-loading 175 - t 176 - ;; Specify the startup banner. Default value is `official', it displays 177 - ;; the official spacemacs logo. An integer value is the index of text 178 - ;; banner, `random' chooses a random text banner in `core/banners' 179 - ;; directory. A string value must be a path to an image format supported 180 - ;; by your Emacs build. 181 - ;; If the value is nil then no banner is displayed. (default 'official) 182 - dotspacemacs-startup-banner 183 - nil 184 - ;; List of items to show in startup buffer or an association list of 185 - ;; the form `(list-type . list-size)`. If nil then it is disabled. 186 - ;; Possible values for list-type are: 187 - ;; `recents' `bookmarks' `projects' `agenda' `todos'. 188 - ;; List sizes may be nil, in which case 189 - ;; `spacemacs-buffer-startup-lists-length' takes effect. 190 - dotspacemacs-startup-lists 191 - nil 192 - ;; True if the home buffer should respond to resize events. (default t) 193 - dotspacemacs-startup-buffer-responsive 194 - t 195 - ;; Default major mode of the scratch buffer (default `text-mode') 196 - dotspacemacs-scratch-mode 197 - 'org-mode 198 - ;; Initial message in the scratch buffer, such as "Welcome to Spacemacs!" 199 - ;; (default nil) 200 - dotspacemacs-initial-scratch-message 201 - nil 202 - ;; List of themes, the first of the list is loaded when spacemacs starts. 203 - ;; Press `SPC T n' to cycle to the next theme in the list (works great 204 - ;; with 2 themes variants, one dark and one light) 205 - dotspacemacs-themes 206 - '(spacemacs-dark 207 - sanityinc-solarized-dark 208 - spacemacs-light 209 - material 210 - ) 211 - ;; Set the theme for the Spaceline. Supported themes are `spacemacs', 212 - ;; `all-the-icons', `custom', `vim-powerline' and `vanilla'. The first three 213 - ;; are spaceline themes. `vanilla' is default Emacs mode-line. `custom' is a 214 - ;; user defined themes, refer to the DOCUMENTATION.org for more info on how 215 - ;; to create your own spaceline theme. Value can be a symbol or list with\ 216 - ;; additional properties. 217 - ;; (default '(spacemacs :separator wave :separator-scale 1.5)) 218 - dotspacemacs-mode-line-theme 219 - '(vim-powerline :separator wave 220 - :separator-scale 1.5) 221 - ;; If non-nil the cursor color matches the state color in GUI Emacs. 222 - ;; (default t) 223 - dotspacemacs-colorize-cursor-according-to-state 224 - t 225 - ;; Default font, or prioritized list of fonts. `powerline-scale' allows to 226 - ;; quickly tweak the mode-line size to make separators look not too crappy. 227 - dotspacemacs-default-font 228 - `("JetBrains Mono" 229 - ,(if (string-equal system-type "darwin") :size);; :size 16 230 - ,(if (string-equal system-type "darwin") 16);; :size 16 231 - :weight normal 232 - :width normal 233 - :powerline-scale 1.2 234 - ) 235 - ;; The leader key (default "SPC") 236 - dotspacemacs-leader-key 237 - "SPC" 238 - ;; The key used for Emacs commands `M-x' (after pressing on the leader key). 239 - ;; (default "SPC") 240 - dotspacemacs-emacs-command-key 241 - "SPC" 242 - ;; The key used for Vim Ex commands (default ":") 243 - dotspacemacs-ex-command-key 244 - ":" 245 - ;; The leader key accessible in `emacs state' and `insert state' 246 - ;; (default "M-m") 247 - dotspacemacs-emacs-leader-key 248 - "M-m" 249 - ;; Major mode leader key is a shortcut key which is the equivalent of 250 - ;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",") 251 - dotspacemacs-major-mode-leader-key 252 - "," 253 - ;; Major mode leader key accessible in `emacs state' and `insert state'. 254 - ;; (default "C-M-m") 255 - dotspacemacs-major-mode-emacs-leader-key 256 - "C-M-m" 257 - ;; These variables control whether separate commands are bound in the GUI to 258 - ;; the key pairs `C-i', `TAB' and `C-m', `RET'. 259 - ;; Setting it to a non-nil value, allows for separate commands under `C-i' 260 - ;; and TAB or `C-m' and `RET'. 261 - ;; In the terminal, these pairs are generally indistinguishable, so this only 262 - ;; works in the GUI. (default nil) 263 - dotspacemacs-distinguish-gui-tab 264 - nil 265 - ;; If non-nil `Y' is remapped to `y$' in Evil states. (default nil) 266 - dotspacemacs-remap-Y-to-y$ 267 - nil 268 - ;; If non-nil, the shift mappings `<' and `>' retain visual state if used 269 - ;; there. (default t) 270 - dotspacemacs-retain-visual-state-on-shift 271 - t 272 - ;; If non-nil, `J' and `K' move lines up and down when in visual mode. 273 - ;; (default nil) 274 - dotspacemacs-visual-line-move-text 275 - t 276 - ;; If non-nil, inverse the meaning of `g' in `:substitute' Evil ex-command. 277 - ;; (default nil) 278 - dotspacemacs-ex-substitute-global 279 - nil 280 - ;; Name of the default layout (default "Default") 281 - dotspacemacs-default-layout-name 282 - "Default" 283 - ;; If non-nil the default layout name is displayed in the mode-line. 284 - ;; (default nil) 285 - dotspacemacs-display-default-layout 286 - nil 287 - ;; If non-nil then the last auto saved layouts are resumed automatically upon 288 - ;; start. (default nil) 289 - dotspacemacs-auto-resume-layouts 290 - nil 291 - ;; If non-nil, auto-generate layout name when creating new layouts. Only has 292 - ;; effect when using the "jump to layout by number" commands. (default nil) 293 - dotspacemacs-auto-generate-layout-names 294 - nil 295 - ;; Size (in MB) above which spacemacs will prompt to open the large file 296 - ;; literally to avoid performance issues. Opening a file literally means that 297 - ;; no major mode or minor modes are active. (default is 1) 298 - dotspacemacs-large-file-size 299 - 1 300 - ;; Location where to auto-save files. Possible values are `original' to 301 - ;; auto-save the file in-place, `cache' to auto-save the file to another 302 - ;; file stored in the cache directory and `nil' to disable auto-saving. 303 - ;; (default 'cache) 304 - dotspacemacs-auto-save-file-location 305 - nil 306 - ;; Maximum number of rollback slots to keep in the cache. (default 5) 307 - dotspacemacs-max-rollback-slots 308 - 5 309 - ;; If non-nil, `helm' will try to minimize the space it uses. (default nil) 310 - dotspacemacs-helm-resize 311 - nil 312 - ;; if non-nil, the helm header is hidden when there is only one source. 313 - ;; (default nil) 314 - dotspacemacs-helm-no-header 315 - t 316 - ;; define the position to display `helm', options are `bottom', `top', 317 - ;; `left', or `right'. (default 'bottom) 318 - dotspacemacs-helm-position 319 - 'bottom 320 - ;; Controls fuzzy matching in helm. If set to `always', force fuzzy matching 321 - ;; in all non-asynchronous sources. If set to `source', preserve individual 322 - ;; source settings. Else, disable fuzzy matching in all sources. 323 - ;; (default 'always) 324 - dotspacemacs-helm-use-fuzzy 325 - 'always 326 - ;; If non-nil, the paste transient-state is enabled. While enabled, pressing 327 - ;; `p' several times cycles through the elements in the `kill-ring'. 328 - ;; (default nil) 329 - dotspacemacs-enable-paste-transient-state 330 - nil 331 - ;; Which-key delay in seconds. The which-key buffer is the popup listing 332 - ;; the commands bound to the current keystroke sequence. (default 0.4) 333 - dotspacemacs-which-key-delay 334 - 0.4 335 - ;; Which-key frame position. Possible values are `right', `bottom' and 336 - ;; `right-then-bottom'. right-then-bottom tries to display the frame to the 337 - ;; right; if there is insufficient space it displays it at the bottom. 338 - ;; (default 'bottom) 339 - dotspacemacs-which-key-position 340 - 'bottom 341 - ;; Control where `switch-to-buffer' displays the buffer. If nil, 342 - ;; `switch-to-buffer' displays the buffer in the current window even if 343 - ;; another same-purpose window is available. If non-nil, `switch-to-buffer' 344 - ;; displays the buffer in a same-purpose window even if the buffer can be 345 - ;; displayed in the current window. (default nil) 346 - dotspacemacs-switch-to-buffer-prefers-purpose 347 - nil 348 - ;; If non-nil a progress bar is displayed when spacemacs is loading. This 349 - ;; may increase the boot time on some systems and emacs builds, set it to 350 - ;; nil to boost the loading time. (default t) 351 - dotspacemacs-loading-progress-bar 352 - nil 353 - ;; If non-nil the frame is fullscreen when Emacs starts up. (default nil) 354 - ;; (Emacs 24.4+ only) 355 - dotspacemacs-fullscreen-at-startup 356 - nil 357 - ;; If non-nil `spacemacs/toggle-fullscreen' will not use native fullscreen. 358 - ;; Use to disable fullscreen animations in OSX. (default nil) 359 - dotspacemacs-fullscreen-use-non-native 360 - nil 361 - ;; If non-nil the frame is maximized when Emacs starts up. 362 - ;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil. 363 - ;; (default nil) (Emacs 24.4+ only) 364 - dotspacemacs-maximized-at-startup 365 - t 366 - ;; A value from the range (0..100), in increasing opacity, which describes 367 - ;; the transparency level of a frame when it's active or selected. 368 - ;; Transparency can be toggled through `toggle-transparency'. (default 90) 369 - dotspacemacs-active-transparency 370 - 90 371 - ;; A value from the range (0..100), in increasing opacity, which describes 372 - ;; the transparency level of a frame when it's inactive or deselected. 373 - ;; Transparency can be toggled through `toggle-transparency'. (default 90) 374 - dotspacemacs-inactive-transparency 375 - 90 376 - ;; If non-nil show the titles of transient states. (default t) 377 - dotspacemacs-show-transient-state-title 378 - t 379 - ;; If non-nil show the color guide hint for transient state keys. (default t) 380 - dotspacemacs-show-transient-state-color-guide 381 - t 382 - ;; If non-nil unicode symbols are displayed in the mode line. (default t) 383 - dotspacemacs-mode-line-unicode-symbols 384 - t 385 - ;; If non-nil smooth scrolling (native-scrolling) is enabled. Smooth 386 - ;; scrolling overrides the default behavior of Emacs which recenters point 387 - ;; when it reaches the top or bottom of the screen. (default t) 388 - dotspacemacs-smooth-scrolling 389 - t 390 - ;; Control line numbers activation. 391 - ;; If set to `t' or `relative' line numbers are turned on in all `prog-mode' and 392 - ;; `text-mode' derivatives. If set to `relative', line numbers are relative. 393 - ;; This variable can also be set to a property list for finer control: 394 - ;; '(:relative nil 395 - ;; :disabled-for-modes dired-mode 396 - ;; doc-view-mode 397 - ;; markdown-mode 398 - ;; org-mode 399 - ;; pdf-view-mode 400 - ;; text-mode 401 - ;; :size-limit-kb 1000) 402 - ;; (default nil) 403 - dotspacemacs-line-numbers 404 - 't 405 - ;; Code folding method. Possible values are `evil' and `origami'. 406 - ;; (default 'evil) 407 - dotspacemacs-folding-method 408 - 'evil 409 - ;; If non-nil `smartparens-strict-mode' will be enabled in programming modes. 410 - ;; (default nil) 411 - dotspacemacs-smartparens-strict-mode 412 - nil 413 - ;; If non-nil pressing the closing parenthesis `)' key in insert mode passes 414 - ;; over any automatically added closing parenthesis, bracket, quote, etc… 415 - ;; This can be temporary disabled by pressing `C-q' before `)'. (default nil) 416 - dotspacemacs-smart-closing-parenthesis 417 - nil 418 - ;; Select a scope to highlight delimiters. Possible values are `any', 419 - ;; `current', `all' or `nil'. Default is `all' (highlight any scope and 420 - ;; emphasis the current one). (default 'all) 421 - dotspacemacs-highlight-delimiters 422 - 'all 423 - ;; If non-nil, start an Emacs server if one is not already running. 424 - dotspacemacs-enable-server 425 - nil 426 - ;; If non-nil, advise quit functions to keep server open when quitting. 427 - ;; (default nil) 428 - dotspacemacs-persistent-server 429 - nil 430 - ;; List of search tool executable names. Spacemacs uses the first installed 431 - ;; tool of the list. Supported tools are `rg', `ag', `pt', `ack' and `grep'. 432 - ;; (default '("rg" "ag" "pt" "ack" "grep")) 433 - dotspacemacs-search-tools 434 - '("rg" "ag" "pt" "ack" "grep") 435 - ;; Format specification for setting the frame title. 436 - ;; %a - the `abbreviated-file-name', or `buffer-name' 437 - ;; %t - `projectile-project-name' 438 - ;; %I - `invocation-name' 439 - ;; %S - `system-name' 440 - ;; %U - contents of $USER 441 - ;; %b - buffer name 442 - ;; %f - visited file name 443 - ;; %F - frame name 444 - ;; %s - process status 445 - ;; %p - percent of buffer above top of window, or Top, Bot or All 446 - ;; %P - percent of buffer above bottom of window, perhaps plus Top, or Bot or All 447 - ;; %m - mode name 448 - ;; %n - Narrow if appropriate 449 - ;; %z - mnemonics of buffer, terminal, and keyboard coding systems 450 - ;; %Z - like %z, but including the end-of-line format 451 - ;; (default "%I@%S") 452 - dotspacemacs-frame-title-format 453 - "%I@%S" 454 - ;; Format specification for setting the icon title format 455 - ;; (default nil - same as frame-title-format) 456 - dotspacemacs-icon-title-format 457 - nil 458 - ;; Delete whitespace while saving buffer. Possible values are `all' 459 - ;; to aggressively delete empty line and long sequences of whitespace, 460 - ;; `trailing' to delete only the whitespace at end of lines, `changed' to 461 - ;; delete only whitespace for changed lines or `nil' to disable cleanup. 462 - ;; (default nil) 463 - dotspacemacs-whitespace-cleanup 464 - nil 465 - ;; Either nil or a number of seconds. If non-nil zone out after the specified 466 - ;; number of seconds. (default nil) 467 - dotspacemacs-zone-out-when-idle 468 - nil 469 - ;; Run `spacemacs/prettify-org-buffer' when 470 - ;; visiting README.org files of Spacemacs. 471 - ;; (default nil) 472 - dotspacemacs-pretty-docs 473 - nil)) 474 - 475 - (defun dotspacemacs/user-init () 476 - "Initialization for user code: 477 - This function is called immediately after `dotspacemacs/init', before layer 478 - configuration. 479 - It is mostly for variables that should be set before packages are loaded. 480 - If you are unsure, try setting them in `dotspacemacs/user-config' first." 481 - 482 - (setq exec-path-from-shell-arguments '("-c")) 483 - 484 - ) 485 - 486 - (defun dotspacemacs/user-config () 487 - "Configuration for user code: 488 - This function is called at the very end of Spacemacs startup, after layer 489 - configuration. 490 - Put your configuration code here, except for variables that should be set 491 - before packages are loaded." 492 - ) 493 - 494 - 495 - 496 - ;; Do not write anything past this comment. This is where Emacs will 497 - ;; auto-generate custom variable definitions. 498 - (defun dotspacemacs/emacs-custom-settings () 499 - "Emacs custom settings. 500 - This is an auto-generated function, do not modify its content directly, use 501 - Emacs customize menu instead. 502 - This function is called at the very end of Spacemacs initialization." 503 - (custom-set-variables 504 - ;; custom-set-variables was added by Custom. 505 - ;; If you edit it by hand, you could mess it up, so be careful. 506 - ;; Your init file should contain only one such instance. 507 - ;; If there is more than one, they won't work right. 508 - '(dante-load-flags 509 - (quote 510 - ("+c" "-Wall" "-ferror-spans" "-fdefer-typed-holes" "-fdefer-type-errors" "-fno-diagnostics-show-caret"))) 511 - '(dante-methods 512 - (quote 513 - (new-build new-impure-nix new-nix nix impure-nix nix-ghci stack mafia bare-cabal bare-ghci styx))) 514 - '(dante-tap-type-time 2) 515 - '(evil-want-Y-yank-to-eol nil) 516 - '(haskell-compile-cabal-build-alt-command 517 - "cabal new-clean -s && cabal new-build --ghc-option=-ferror-spans") 518 - '(haskell-compile-cabal-build-command "cabal new-build --ghc-option=-ferror-spans") 519 - '(haskell-hasktags-arguments (quote ("-R"))) 520 - '(haskell-hasktags-path "fast-tags") 521 - '(haskell-hoogle-command "nil") 522 - '(haskell-process-suggest-hoogle-imports nil) 523 - '(haskell-stylish-on-save t) 524 - '(package-selected-packages 525 - (quote 526 - (direnv reveal-in-osx-finder osx-trash osx-dictionary osx-clipboard launchctl treemacs-projectile treemacs-evil treemacs org-download org-brain nix-mode hlint-refactor eyebrowse evil-visual-mark-mode evil-nerd-commenter evil-magit eval-sexp-fu editorconfig doom-modeline eldoc-eval define-word dante cython-mode aggressive-indent ace-link anaconda-mode ivy smartparens goto-chg company window-purpose imenu-list helm helm-core flycheck avy projectile magit f simple-httpd powerline visual-fill-column yasnippet-snippets yapfify yaml-mode xterm-color ws-butler writeroom-mode winum which-key web-mode web-beautify volatile-highlights vi-tilde-fringe uuidgen use-package unfill toc-org tagedit symon super-save string-inflection spaceline-all-the-icons smeargle slim-mode shrink-path shell-pop scss-mode sass-mode restart-emacs rainbow-delimiters pyvenv pytest pyenv-mode py-isort pug-mode prettier-js popwin pippel pipenv pip-requirements pfuture persp-mode pcre2el password-generator paradox pandoc-mode ox-pandoc overseer orgit org-projectile org-present org-pomodoro org-mime org-bullets open-junk-file nameless mwim multi-term move-text mmm-mode material-theme markdown-toc magit-svn magit-gitflow macrostep lorem-ipsum livid-mode live-py-mode link-hint lcr json-navigator json-mode js2-refactor js-doc insert-shebang indent-guide importmagic impatient-mode hungry-delete hl-todo hindent highlight-parentheses highlight-numbers highlight-indentation highlight helm-xref helm-themes helm-swoop helm-pydoc helm-purpose helm-projectile helm-org-rifle helm-mode-manager helm-make helm-lean helm-hoogle helm-gitignore helm-git-grep helm-flx helm-descbinds helm-css-scss helm-company helm-c-yasnippet helm-ag haskell-snippets haskell-mode google-translate golden-ratio gnuplot gitignore-templates gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link git-commit gh-md fuzzy font-lock+ flyspell-correct-helm flycheck-bashate flx-ido fish-mode fill-column-indicator fancy-battery expand-region evil-visualstar evil-unimpaired evil-tutor evil-surround evil-org evil-numbers 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 eshell-z eshell-prompt-extras esh-help emmet-mode elisp-slime-nav dumb-jump dotenv-mode diminish counsel-projectile company-web company-tern company-statistics company-shell company-lean company-cabal company-auctex company-anaconda column-enforce-mode color-theme-sanityinc-solarized cmm-mode clean-aindent-mode centered-cursor-mode auto-yasnippet auto-highlight-symbol auto-dictionary auto-compile ace-window ace-jump-helm-line ac-ispell)))) 527 - (custom-set-faces 528 - ;; custom-set-faces was added by Custom. 529 - ;; If you edit it by hand, you could mess it up, so be careful. 530 - ;; Your init file should contain only one such instance. 531 - ;; If there is more than one, they won't work right. 532 - ) 533 - )
-73
spacemacs-private/custom-config-evil/packages.el
··· 1 - ;;; packages.el --- custom-config-evil layer packages file for Spacemacs. 2 - ;; 3 - ;; Copyright (c) 2012-2018 Sylvain Benner & Contributors 4 - ;; 5 - ;; Author: Kaushik Chakraborty <kaushik@AMB00472.local> 6 - ;; URL: https://github.com/syl20bnr/spacemacs 7 - ;; 8 - ;; This file is not part of GNU Emacs. 9 - ;; 10 - ;;; License: GPLv3 11 - 12 - ;;; Commentary: 13 - 14 - ;; See the Spacemacs documentation and FAQs for instructions on how to implement 15 - ;; a new layer: 16 - ;; 17 - ;; SPC h SPC layers RET 18 - ;; 19 - ;; 20 - ;; Briefly, each package to be installed or configured by this layer should be 21 - ;; added to `custom-config-evil-packages'. Then, for each package PACKAGE: 22 - ;; 23 - ;; - If PACKAGE is not referenced by any other Spacemacs layer, define a 24 - ;; function `custom-config-evil/init-PACKAGE' to load and initialize the package. 25 - 26 - ;; - Otherwise, PACKAGE is already referenced by another Spacemacs layer, so 27 - ;; define the functions `custom-config-evil/pre-init-PACKAGE' and/or 28 - ;; `custom-config-evil/post-init-PACKAGE' to customize the package as it is loaded. 29 - 30 - ;;; Code: 31 - 32 - (defconst custom-config-evil-packages 33 - '(evil 34 - ;;rainbow-identifiers 35 - ispell 36 - company 37 - elfeed 38 - ) 39 - ) 40 - 41 - (defun custom-config-evil/post-init-evil () 42 - (setq evil-search-module 'evil-search) 43 - ) 44 - 45 - (defun custom-config-evil/post-init-ispell () 46 - (setq ispell-program-name "/run/current-system/sw/bin/aspell") 47 - ) 48 - 49 - (defun custom-config-evil/post-init-company () 50 - (global-company-mode) 51 - (global-set-key (kbd "S-SPC") 52 - #'company-complete) 53 - ) 54 - 55 - (defun custom-config-evil/post-init-elfeed () 56 - (spacemacs|define-custom-layout "@Feeds" 57 - :binding "f" 58 - :body 59 - (progn 60 - (elfeed) 61 - (elfeed-update))) 62 - ) 63 - 64 - (defun custom-config-evil/init-rainbow-identifiers () 65 - ;; (use-package rainbow-identifiers 66 - ;; :defer t) 67 - ) 68 - 69 - (defun custom-config-evil/post-init-rainbow-identifiers () 70 - ;; (add-hook 'prog-mode-hook 'rainbow-identifiers-mode) 71 - ) 72 - 73 - ;;; packages.el ends here
-149
spacemacs-private/custom-config-org/packages.el
··· 1 - ;;; packages.el --- custom-config-org layer packages file for Spacemacs. 2 - ;; 3 - ;; Copyright (c) 2012-2018 Sylvain Benner & Contributors 4 - ;; 5 - ;; Author: Kaushik Chakraborty <kaushik@AMB00472> 6 - ;; URL: https://github.com/syl20bnr/spacemacs 7 - ;; 8 - ;; This file is not part of GNU Emacs. 9 - ;; 10 - ;;; License: GPLv3 11 - 12 - ;;; Commentary: 13 - 14 - ;; See the Spacemacs documentation and FAQs for instructions on how to implement 15 - ;; a new layer: 16 - ;; 17 - ;; SPC h SPC layers RET 18 - ;; 19 - ;; 20 - ;; Briefly, each package to be installed or configured by this layer should be 21 - ;; added to `custom-config-org-packages'. Then, for each package PACKAGE: 22 - ;; 23 - ;; - If PACKAGE is not referenced by any other Spacemacs layer, define a 24 - ;; function `custom-config-org/init-PACKAGE' to load and initialize the package. 25 - 26 - ;; - Otherwise, PACKAGE is already referenced by another Spacemacs layer, so 27 - ;; define the functions `custom-config-org/pre-init-PACKAGE' and/or 28 - ;; `custom-config-org/post-init-PACKAGE' to customize the package as it is loaded. 29 - 30 - ;;; Code: 31 - 32 - (defconst custom-config-org-packages 33 - '(org) 34 - ) 35 - 36 - (defun custom-config-org/org-capture-templates () 37 - (setq org-capture-templates '( 38 - ;; ("m" "micro blog" 39 - ;; plain 40 - ;; (file (lambda () 41 - ;; (expand-file-name (concat (format-time-string "%Y%m%d%H%M%S") 42 - ;; ".md") 43 - ;; "~/Developer/src/personal/blog-hakyll/micro-posts/"))) 44 - ;; "---\npublished : %<%Y-%m-%d %H:%M:%S%z>\n---\n\n%c%?") 45 - 46 - ("n" "new note" 47 - item 48 - (file (lambda () 49 - (expand-file-name (concat "note-" 50 - (format-time-string "%Y%m%d%H%M%S") 51 - ".org") 52 - org-directory))) 53 - "**** \n- %?") 54 - 55 - ;; ("p" "new day plan" 56 - ;; plain 57 - ;; (file (lambda () 58 - ;; (expand-file-name (concat "plan-" 59 - ;; (format-time-string "%Y-%m-%d") 60 - ;; ".org") 61 - ;; "~/Documents/notes/Plans/"))) 62 - ;; "#+FILETAGS: planning daily\n* %^{item}\n %^{date}T\n - %?\n") 63 - 64 - ("t" "new todo" 65 - entry 66 - (file+headline "" "Tasks") 67 - "* TODO %?\n:PROPERTIES:\n:CREATEDON: %U\n:END:" :prepend t))) 68 - ) 69 - 70 - (defun custom-config-org/org-custom-commands () 71 - (setq org-agenda-custom-commands 72 - (quote 73 - (("A" "Priority #A tasks\"" agenda "" 74 - ((org-agenda-span 75 - (quote day)) 76 - (org-agenda-overriding-header "Today's priority #A tasks: ") 77 - (org-agenda-skip-function 78 - (quote 79 - (org-agenda-skip-entry-if 80 - (quote notregexp) 81 - "\\=.*\\[#A\\]"))))) 82 - ("b" "Priority #A and #B tasks" agenda "" 83 - ((org-agenda-span 84 - (quote day)) 85 - (org-agenda-overriding-header "Today's priority #A and #B tasks: ") 86 - (org-agenda-skip-function 87 - (quote 88 - (org-agenda-skip-entry-if 89 - (quote regexp) 90 - "\\=.*\\[#C\\]"))))) 91 - ("u" "Unscheduled tasks" tags "TODO<>\"\"&TODO<>{DONE\\|CANCELED\\|DEFERRED\\|SOMEDAY}" 92 - ((org-agenda-overriding-header "Unscheduled tasks: ") 93 - (org-agenda-skip-function 94 - (quote 95 - (org-agenda-skip-entry-if 96 - (quote scheduled) 97 - (quote deadline) 98 - ))) 99 - (org-agenda-sorting-strategy 100 - (quote 101 - (user-defined-up))) 102 - (org-agenda-prefix-format "%-11c%5(org-todo-age) "))) 103 - )))) 104 - 105 - (defun custom-config-org/post-init-org () 106 - (setq 107 - org-directory "~/Documents/notes" 108 - 109 - org-default-notes-file (cond ((string-equal system-type "darwin") 110 - "/Users/kaushik/Library/Mobile Documents/iCloud~com~appsonthemove~beorg/Documents/Org-Notes/todo.org") 111 - (t (concat org-directory "/todo.org"))) 112 - 113 - org-agenda-files (list 114 - org-directory 115 - org-default-notes-file 116 - ) 117 - org-todo-keywords '((sequence 118 - "TODO(t)" 119 - "STARTED(s@/!)" 120 - "WAITING(w@)" 121 - "|" 122 - "DONE(d!)" 123 - "SOMEDAY(y!)" 124 - "CANCELLED(c@)" 125 - "DEFERRED(r@)")) 126 - org-todo-keyword-faces (quote ( 127 - ("TODO" :foreground "#00BFFF" :weight bold) 128 - ("STARTED" :foreground "#FF8247" :weight bold) 129 - ("WAITING" :foreground "#EE6363" :weight bold) 130 - ("SOMEDAY" :foreground "#EEDC82" :weight bold) 131 - ("DEFERRED" :foreground "#4876FF" :weight bold) 132 - ("DONE" :foreground "#76EE00" :weight bold) 133 - )) 134 - 135 - org-pretty-entities t 136 - org-agenda-span 'day 137 - org-archive-location "TODO-archive::" 138 - org-archive-save-context-info (quote (time category itags)) 139 - org-reveal-root "file:///Users/kaushik/.local/share/revealjs" 140 - org-re-reveal-root "file:///Users/kaushik/.local/share/revealjs" 141 - ) 142 - 143 - (custom-config-org/org-capture-templates) 144 - (custom-config-org/org-custom-commands) 145 - (add-hook 'org-capture-mode-hook 146 - (lambda () 147 - (evil-insert-state))) 148 - ) 149 - ;;; packages.el ends here
-63
spacemacs-private/custom-haskell/packages.el
··· 1 - ;;; packages.el --- custom-haskell layer packages file for Spacemacs. 2 - ;; 3 - ;; Copyright (c) 2012-2018 Sylvain Benner & Contributors 4 - ;; 5 - ;; Author: Kaushik Chakraborty <kaushik@AMB00472.local> 6 - ;; URL: https://github.com/syl20bnr/spacemacs 7 - ;; 8 - ;; This file is not part of GNU Emacs. 9 - ;; 10 - ;;; License: GPLv3 11 - 12 - ;;; Commentary: 13 - 14 - ;; See the Spacemacs documentation and FAQs for instructions on how to implement 15 - ;; a new layer: 16 - ;; 17 - ;; SPC h SPC layers RET 18 - ;; 19 - ;; 20 - ;; Briefly, each package to be installed or configured by this layer should be 21 - ;; added to `custom-haskell-packages'. Then, for each package PACKAGE: 22 - ;; 23 - ;; - If PACKAGE is not referenced by any other Spacemacs layer, define a 24 - ;; function `custom-haskell/init-PACKAGE' to load and initialize the package. 25 - 26 - ;; - Otherwise, PACKAGE is already referenced by another Spacemacs layer, so 27 - ;; define the functions `custom-haskell/pre-init-PACKAGE' and/or 28 - ;; `custom-haskell/post-init-PACKAGE' to customize the package as it is loaded. 29 - 30 - ;;; Code: 31 - 32 - (defconst custom-haskell-packages 33 - '(haskell 34 - dante 35 - nix-sandbox 36 - )) 37 - 38 - (defun custom-haskell/post-init-haskell () 39 - (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation) 40 - (add-hook 'haskell-mode-hook 'dante-mode) 41 - (spacemacs/set-leader-keys-for-major-mode 42 - 'haskell-mode "M-." 'xref-find-definitions) 43 - ) 44 - (defun custom-haskell/post-init-dante () 45 - (add-hook 'dante-mode-hook 46 - '(lambda () 47 - (flycheck-add-next-checker 'haskell-dante 48 - '(warning . haskell-hlint))))) 49 - 50 - (defun custom-haskell/post-init-nix-sandbox () 51 - (setq haskell-process-wrapper-function 52 - (lambda (args) (apply 'nix-shell-command (nix-current-sandbox) args))) 53 - ) 54 - 55 - ;; (defun custom-haskell/init-lsp-haskell () 56 - ;; (use-package lsp-haskell 57 - ;; :defer t) 58 - ;; ) 59 - 60 - ;; (defun custom-haskell/post-init-lsp-haskell () 61 - ;; (setq lsp-haskell-process-path-hie "hie-wrapper") 62 - ;; (add-hook 'haskell-mode-hook #'lsp) 63 - ;; )
-65
spacemacs-private/custom-nix/packages.el
··· 1 - ;;; packages.el --- custom-nix layer packages file for Spacemacs. 2 - ;; 3 - ;; Copyright (c) 2012-2018 Sylvain Benner & Contributors 4 - ;; 5 - ;; Author: Kaushik Chakraborty <kaushik@AMB00472> 6 - ;; URL: https://github.com/syl20bnr/spacemacs 7 - ;; 8 - ;; This file is not part of GNU Emacs. 9 - ;; 10 - ;;; License: GPLv3 11 - 12 - ;;; Commentary: 13 - 14 - ;; See the Spacemacs documentation and FAQs for instructions on how to implement 15 - ;; a new layer: 16 - ;; 17 - ;; SPC h SPC layers RET 18 - ;; 19 - ;; 20 - ;; Briefly, each package to be installed or configured by this layer should be 21 - ;; added to `custom-nix-packages'. Then, for each package PACKAGE: 22 - ;; 23 - ;; - If PACKAGE is not referenced by any other Spacemacs layer, define a 24 - ;; function `custom-nix/init-PACKAGE' to load and initialize the package. 25 - 26 - ;; - Otherwise, PACKAGE is already referenced by another Spacemacs layer, so 27 - ;; define the functions `custom-nix/pre-init-PACKAGE' and/or 28 - ;; `custom-nix/post-init-PACKAGE' to customize the package as it is loaded. 29 - 30 - ;;; Code: 31 - 32 - (defconst custom-nix-packages 33 - '(nix-mode 34 - nix-sandbox 35 - persp-mode) 36 - ) 37 - 38 - (defun custom-nix/init-nix-mode () 39 - (use-package nix-mode 40 - :defer t 41 - :mode ("\\.nix\\'" "\\.nix.in\\'") 42 - :init 43 - (setq nix-indent-function 'nix-indent-line) 44 - )) 45 - 46 - (defun custom-nix/init-nix-sandbox () 47 - (use-package nix-sandbox 48 - :defer t)) 49 - 50 - (defun custom-nix/post-init-persp-mode() 51 - (spacemacs|define-custom-layout "@Nix-Config" 52 - :binding "n" 53 - :body 54 - (progn 55 - ;; (find-file "~/Developer/src/personal/nix-config/darwin.nix") 56 - ;; (find-file-other-window "~/Developer/src/personal/nixpkgs/pkgs/top-level/all-packages.nix"))) 57 - (find-file (cond ((string-equal system-type "darwin") "~/developer/src/personal/nix-config/mac/home.nix") 58 - (t "~/src/ops/nix-config/precision/home.nix"))) 59 - (find-file-other-window (cond ((string-equal system-type "darwin") "~/developer/src/personal/nix-config/mac/darwin.nix") 60 - (t "~/src/ops/nix-config/precision/default.nix"))) 61 - ) 62 - ) 63 - ) 64 - 65 - ;;; packages.el ends here
-210
spacemacs-private/elfeed-feedly.org
··· 1 - * Imported Feeds :elfeed: 2 - ** Fun Programming :fun_programming: 3 - *** [[http://degoes.net/feed.xml][John A De Goes]] 4 - *** [[http://siek.blogspot.com/feeds/posts/default][Jeremy Siek]] 5 - *** [[http://pigworker.wordpress.com/feed/][Conor McBride]] 6 - *** [[https://doisinkidney.com/rss.xml][Donnacha Oisín Kidney's Blog]] 7 - *** [[https://blog.janestreet.com/feed.xml][Jane Street Tech Blog]] 8 - *** [[http://existentialtype.wordpress.com/feed/][Robert Harper]] 9 - *** [[http://lambdamaphone.blogspot.com/feeds/posts/default?alt=rss][Chris Martens]] 10 - *** [[http://www.lihaoyi.com/feed.xml][Haoyi's Programming Blog]] 11 - *** [[http://math.andrej.com/feed/][Andrej Bauer]] 12 - *** [[https://joearms.github.io/feed.xml][Joe Armstrong - Erlang and other stuff]] 13 - *** [[http://www.jamesward.com/feed/][James Ward]] 14 - *** [[http://feeds.feedburner.com/JohnResig][John Resig]] 15 - *** [[http://requestforlogic.blogspot.com/feeds/posts/default?alt=rss][Rob Simmons]] 16 - *** [[http://sigfpe.blogspot.com/feeds/posts/default][Dan Piponi]] 17 - *** [[http://pchiusano.github.io/feed.xml][Paul Chiusano's blog]] 18 - *** [[http://bartoszmilewski.wordpress.com/feed/][ Bartosz Milewski's Programming Cafe]] 19 - *** [[http://matt.might.net/articles/feed.rss][Matt Might's blog]] 20 - *** [[http://wadler.blogspot.com/atom.xml][Wadler's Blog]] 21 - *** [[http://logic-forall.blogspot.com/feeds/posts/default?alt=rss][Valeria de Paiva]] 22 - *** [[http://fgiasson.com/blog/index.php/feed/][Frederick Giasson (Clojure)]] 23 - *** [[https://lexi-lambda.github.io/feeds/all.atom.xml][Alexis King's Blog: Alexis King's Blog]] 24 - *** [[http://foldmap.tumblr.com/rss][Lazily Succinct]] 25 - *** [[http://siek.blogspot.com/feeds/posts/default?alt=rss][Jeremy Siek]] 26 - *** [[http://gbracha.blogspot.com/feeds/posts/default][Room 101]] 27 - *** [[http://semantic-domain.blogspot.com/feeds/posts/default][Semantic Domain]] 28 - *** [[http://patternsinfp.wordpress.com/feed/][Jeremy Gibbons]] 29 - ** Research Blogs :research: 30 - *** [[http://hacks.mozilla.org/feed/][Mozilla Hacks – the Web developer blog]] 31 - *** [[https://webkit.org/feed/atom/][WebKit]] 32 - *** [[https://code.facebook.com/posts/rss][Facebook Engineering]] 33 - *** [[http://googleresearch.blogspot.com/atom.xml][Google AI Blog]] 34 - *** [[http://yahoohadoop.tumblr.com/rss][Hadoop at Yahoo]] 35 - *** [[http://nerds.airbnb.com/feed/][Airbnb Engineering & Data Science - Medium]] 36 - *** [[https://research.facebook.com/blog/rss][Blog – Facebook Research]] 37 - *** [[https://deepmind.com/blog/feed/basic/][DeepMind ]] 38 - *** [[http://distill.pub/rss.xml][Distill]] 39 - *** [[http://techblog.netflix.com/feeds/posts/default][Netflix TechBlog - Medium]] 40 - *** [[https://engineering.linkedin.com/blog.rss][LinkedIn Engineering]] 41 - ** Comics :comics: 42 - *** [[http://feed.dilbert.com/dilbert/daily_strip][Dilbert Daily Strip]] 43 - *** [[http://existentialcomics.com/rss.xml][Existential Comics]] 44 - *** [[http://xkcd.com/rss.xml][xkcd]] 45 - *** [[http://classicprogrammerpaintings.tumblr.com/rss][Classic Programmer Paintings]] 46 - *** [[http://what-if.xkcd.com/feed.atom][What If?]] 47 - ** Theory :theory: 48 - *** [[http://logicaltypes.blogspot.com/feeds/posts/default][Typed Logic]] 49 - *** [[http://blog.higher-order.com/atom.xml][Higher Order]] 50 - *** [[http://feeds.feedburner.com/theendeavour][John D. Cook]] 51 - *** [[http://www.mathmarauder.com/feed][Marauders of the Lost Sciences]] 52 - *** [[http://blog.acolyer.org/feed/][the morning paper]] 53 - *** [[http://jeremykun.com/feed/][Math ∩ Programming]] 54 - *** [[http://feeds.feedburner.com/catonmat][catonmat.net – less is more]] 55 - *** [[http://rjlipton.wordpress.com/feed][Gödel’s Lost Letter and P=NP]] 56 - *** [[http://www.wildml.com/feed/][WildML]] 57 - *** [[https://picturethismaths.wordpress.com/feed/][Picture this maths]] 58 - *** [[http://www.pl-enthusiast.net/feed/][The Programming Languages Enthusiast]] 59 - *** [[http://terrytao.wordpress.com/feed/][What's new]] 60 - *** [[http://lambda-the-ultimate.org/rss.xml][Lambda the Ultimate]] 61 - *** [[https://acm-fm-blog.blogspot.com/feeds/posts/default][ACM India Blogs on FM and Theory B]] 62 - *** [[http://egtheory.wordpress.com/feed/][Theory, Evolution, and Games Group]] 63 - *** [[http://programmingpraxis.com/feed/][Programming Praxis]] 64 - *** [[http://blog.computationalcomplexity.org/feeds/posts/default][Computational Complexity]] 65 - *** [[http://blog.regehr.org/feed][Embedded in Academia]] 66 - ** Art & Culture :art_culture: 67 - *** [[http://feedproxy.google.com/brainpickings/rss][Brain Pickings]] 68 - *** [[http://quillette.com/feed/][Quillette]] 69 - *** [[http://www.aldaily.com/feed/][Arts & Letters Daily]] 70 - *** [[http://feeds.feedburner.com/nybooks][The New York Review of Books]] 71 - ** Publications :publications: 72 - *** [[http://www.websemanticsjournal.org/index.php/ps/gateway/plugin/WebFeedGatewayPlugin/rss2][Web Semantics]] 73 - *** [[http://rss.acm.org/dl/J773.xml][ACM Transactions on Computational Logic (TOCL)]] 74 - *** [[http://aperiodical.com/feed/][The Aperiodical]] 75 - *** [[http://journals.cambridge.org/data/rss/feed_JFP_rss_2.0.xml][Journal of Functional Programming]] 76 - *** [[http://queue.acm.org/rss/feeds/queuecontent.xml][ACM Queue - All Queue Content]] 77 - *** [[http://rss.acm.org/dl/J401.xml][Journal of the ACM (JACM)]] 78 - *** [[http://queue.acm.org/rss/feeds/workflowsystems.xml][ACM Queue - Workflow Systems]] 79 - *** [[http://rss.acm.org/dl/J967.xml][ACM Journal on Emerging Technologies in Computing Systems (JETC)]] 80 - *** [[https://www.quantamagazine.org/category/computer-science-2/feed/][Computer Science – Quanta Magazine]] 81 - *** [[http://jods.mitpress.mit.edu/data/rss.xml][Journal of Design and Science]] 82 - *** [[https://www.quantamagazine.org/category/mathematics-2/feed/][Mathematics – Quanta Magazine]] 83 - ** Bloggers :bloggers: 84 - *** [[http://feeds.feedburner.com/StudyHacks][Blog – Cal Newport]] 85 - *** [[http://blog.empathybox.com/rss][Jay Kreps]] 86 - *** [[https://aphyr.com//posts.atom][Aphyr: Posts]] 87 - *** [[http://teh.id.au/posts/atom.xml][teh.id.au/posts]] 88 - *** [[http://martinfowler.com/bliki/bliki.atom][Martin Fowler]] 89 - *** [[http://feeds.feedburner.com/SoftwareIsHard][Software is hard]] 90 - *** [[http://bit-player.org/feed][bit-player]] 91 - *** [[http://www.aaronsw.com/2002/feeds/pgessays.rss][Paul Graham: Essays]] 92 - *** [[http://www.idlewords.com/index.xml][Idle Words]] 93 - *** [[http://manu.sporny.org/feed/][The Beautiful, Tormented Machine]] 94 - *** [[http://blogs.tedneward.com/SyndicationService.asmx/GetRss][Ted Neward's Blog]] 95 - *** [[http://feeds.pcmag.com/Rss.aspx/SectionArticles?sectionId=1500][John C Dvorak]] 96 - *** [[http://dtrace.org/blogs/ahl/feed/][Adam Leventhal's blog]] 97 - *** [[http://feeds.feedburner.com/JankoAtWarpSpeed][Janko Jovanovic]] 98 - *** [[http://www.joelonsoftware.com/rss.xml][Joel on Software]] 99 - *** [[https://slatestarcodex.com/feed/][Slate Star Codex]] 100 - *** [[http://www.billthelizard.com/feeds/posts/default][Bill the Lizard]] 101 - *** [[http://izbicki.me/blog/feed][Mike Izbicki's blog posts]] 102 - *** [[http://www.mkbergman.com/?feed=rss2][AI3:::Adaptive Information]] 103 - *** [[http://feed.dilbert.com/dilbert/blog][Scott Adam's Blog]] 104 - *** [[http://adam.curry.com/linkblog.xml][Adam Curry's MicroBlog]] 105 - *** [[http://feeds2.feedburner.com/pragandy][Andy Hunt's Toolshed Technologies]] 106 - *** [[http://feeds.feedburner.com/codinghorror][Coding Horror]] 107 - *** [[https://www.tbray.org/ongoing/ongoing.atom][ongoing by Tim Bray]] 108 - *** [[http://macstrac.blogspot.com/feeds/posts/default][James Strachan's Blog]] 109 - *** [[http://feeds.feedburner.com/steveklabnik/words][Steve Klabnik]] 110 - ** Blogs :blogs: 111 - *** [[http://blog.codecentric.de/en/feed/][codecentric AG Blog]] 112 - *** [[https://digest.bps.org.uk/category/developmental/feed/][Research Digest » Developmental Category Feed]] 113 - *** [[http://comonad.com/reader/feed/][The Comonad.Reader]] 114 - *** [[http://themacro.com/feed.xml][The Macro]] 115 - *** [[http://highscalability.com/rss.xml][High Scalability]] 116 - *** [[http://factordaily.com/feed/][FactorDaily]] 117 - *** [[https://theinitialcommit.com/feed.xml][_theInitialCommit]] 118 - *** [[http://www.infoq.com/feed?token=IxfzXZSmf9Mgj6m7sXGCMVrp60LGr9f6][InfoQ]] 119 - *** [[http://golem.ph.utexas.edu/category/atom10.xml][The n-Category Café]] 120 - *** [[http://www.stevesouders.com/blog/feed/][High Performance Web Sites]] 121 - *** [[http://www.guardian.co.uk/info/developer-blog/rss][Developer blog]] 122 - *** [[http://usesthis.com/feed/][Uses This]] 123 - *** [[http://underscoreconsulting.com/feed.xml][Underscore]] 124 - *** [[http://se-radio.net/rss][Software Engineering Radio - The Podcast for Professional Software Developers]] 125 - *** [[http://alistapart.com/site/rss][A List Apart: The Full Feed]] 126 - *** [[http://rss.slashdot.org/Slashdot/slashdotLinux][Slashdot: Linux]] 127 - *** [[http://feeds.feedburner.com/37signals/beMH][Signal v. Noise]] 128 - *** [[http://blog.davidungar.net/feed/][Insights]] 129 - *** [[https://www.yahoo.com/tech/tagged/the-new-old-thing/rss][The-new-old-thing | Yahoo Tech]] 130 - *** [[http://blog.schema.org/feeds/posts/default][schema blog]] 131 - *** [[http://typelevel.org/blog/feed.rss][Typelevel.scala]] 132 - *** [[https://freedom-to-tinker.com/feed/rss/][Freedom to Tinker]] 133 - *** [[https://machinelearning.apple.com/feed.xml][Apple Machine Learning Journal]] 134 - *** [[http://blog.8thlight.com/feed/atom.xml][8th Light Blog]] 135 - *** [[http://planetrdf.com/index.rdf][Planet RDF]] 136 - *** [[http://www.artima.com/weblogs/feeds/weblogs.rss][Artima Weblogs]] 137 - *** [[http://muratbuffalo.blogspot.com/feeds/posts/default][Metadata]] 138 - *** [[http://softwareengineeringdaily.com/feed/][Software Engineering Daily]] 139 - *** [[http://v8project.blogspot.com/feeds/posts/default][V8 JavaScript Engine]] 140 - *** [[http://emacsredux.com/atom.xml][Emacs Redux]] 141 - *** [[http://feeds.feedburner.com/blogspot/Dcni][Google Developers Blog]] 142 - *** [[http://feeds.feedburner.com/NodeUp][NodeUp]] 143 - *** [[http://aphyr.com/tags/jepsen.atom][Aphyr: Jepsen]] 144 - *** [[http://www.scala-lang.org/feed/blog.xml][www.scala-lang.org]] 145 - *** [[http://www.cakesolutions.net/teamblogs/rss.xml][Cake Solutions]] 146 - *** [[https://blog.hablapps.com/feed/][Purely Functional]] 147 - *** [[http://chrispenner.ca/atom.xml][Chris Penner]] 148 - *** [[http://unisonweb.org/feed.xml][Unison]] 149 - *** [[https://cacm.acm.org/blogs/blog-cacm.rss][CACM Blog]] 150 - *** [[https://cacm.acm.org/opinion.rss][CACM Opinion]] 151 - ** Haskell :haskell: 152 - *** [[http://reasonablypolymorphic.com/atom.xml][Reasonably Polymorphic]] 153 - *** [[http://blog.jle.im/rss][in Code — Entries]] 154 - *** [[http://byorgey.wordpress.com/feed/][blog :: Brent -]] 155 - *** [[http://jaspervdj.be/rss.xml][jaspervdj - All posts]] 156 - *** [[http://bartoszmilewski.com/feed/][  Bartosz Milewski's Programming Cafe]] 157 - *** [[https://deque.blog/feed/][Deque]] 158 - *** [[http://planet.haskell.org/rss20.xml][Planet Haskell]] 159 - *** [[http://conal.net/blog/feed/][Conal Elliott]] 160 - *** [[https://ajknapp.github.io/feed.xml][Volts, Sheaves, and Trees]] 161 - *** [[https://harry.garrood.me/atom.xml][Harry Garrood’s blog]] 162 - *** [[https://blogs.ncl.ac.uk/andreymokhov/feed/][no time]] 163 - *** [[https://functor.tokyo/blog/feed][functor.tokyo blog feed]] 164 - *** [[http://blog.tweag.io/rss.xml][Tweag I/O - Engineering blog]] 165 - *** [[http://bitemyapp.com/rss.xml][bitemyapp]] 166 - *** [[http://wadler.blogspot.com/feeds/posts/default?alt=rss][Wadler's Blog]] 167 - *** [[http://why-lambda.blogspot.com/feeds/posts/default?alt=rss][James Cheney]] 168 - *** [[http://argumatronic.com/rss.xml][argumatronic]] 169 - *** [[https://www.blogger.com/feeds/8068466035875589791/posts/default][Neel Krishnaswami]] 170 - *** [[https://wickstrom.tech/feed.xml][Oskar Wickström]] 171 - *** [[https://simonmar.github.io/atom.xml][Simon Marlow]] 172 - *** [[http://brianmckenna.org/blog/feed][BAM Weblog]] 173 - *** [[https://blog.plover.com/index.atom][The Universe of Discourse]] 174 - *** [[https://blog.nyarlathotep.one/feed.xml][Alexandre Moine's blog]] 175 - *** [[https://idontgetoutmuch.wordpress.com/feed/][Maths, Stats & Functional Programming]] 176 - *** [[https://www.blogger.com/feeds/1777990983847811806/posts/default][Haskell for all]] 177 - *** [[http://www.parsonsmatt.org/feed.xml][To Overcome]] 178 - *** [[https://chshersh.github.io/rss.xml][kodimensional :: Haskell blog posts]] 179 - *** [[http://okmij.org/ftp/rss.xml][okmij.org]] 180 - *** [[http://donsbot.wordpress.com/feed/][Control.Monad.Writer]] 181 - *** [[http://composition.al/atom.xml][Lindsey Kuper]] 182 - *** [[https://serokell.io/blog.rss.xml][Serokell Blog]] 183 - *** [[http://blog.ezyang.com/feed/][Inside 245-5D]] 184 - *** [[https://www.snoyman.com/feed][Michael Snoyman's blog]] 185 - *** [[http://blog.vmchale.com/atom][blog]] 186 - *** [[http://mpickering.github.io/atom.xml][mpickering.github.io]] 187 - *** [[https://ro-che.info/articles/rss.xml][Roman Cheplyaka]] 188 - *** [[https://chrispenner.ca/atom.xml][Chris Penner]] 189 - *** [[http://www.joachim-breitner.de/blog_feed.rss][nomeata’s mind shares]] 190 - *** [[http://oleg.fi/gists/atom.xml][Oleg's gists]] 191 - *** [[http://neilmitchell.blogspot.com/feeds/posts/default][Neil Mitchell's Haskell Blog]] 192 - *** [[https://mmhaskell.com/blog?format=RSS][Blog - Monday Morning Haskell]] 193 - *** [[http://www.well-typed.com/blog/rss2.xml][Well-Typed Blog]] 194 - ** News :news: 195 - *** [[http://pib.nic.in/newsite/rssenglish.aspx][Press Information Bureau]] 196 - *** [[http://www.dvorak.org/blog/?feed=rss2][Dvorak News Blog]] 197 - ** Apple :apple: 198 - *** [[http://inessential.com/xml/rss.xml][inessential.com]] 199 - *** [[http://feeds.feedburner.com/marcoorg][Marco.org]] 200 - *** [[http://www.macstories.net/feed/][MacStories]] 201 - *** [[http://www.leancrew.com/all-this/feed/][And now it’s all this]] 202 - *** [[http://nshipster.com/feed.xml][NSHipster]] 203 - *** [[http://feedpress.me/sixcolors?type=xml][Six Colors]] 204 - *** [[http://daringfireball.net/index.xml][Daring Fireball]] 205 - *** [[http://thesweetsetup.com/feed/][The Sweet Setup]] 206 - *** [[http://stratechery.com/feed][Stratechery by Ben Thompson]] 207 - ** Aggregators :aggregators: 208 - *** [[https://news.ycombinator.com/rss][Hacker News]] 209 - *** [[https://lobste.rs/rss][Lobsters]] 210 - *** [[http://feedworld.net/toc/atom.xml][Theory of Computing Blog Aggregator]]