Update 2019-09-27

This commit is contained in:
Nguyễn Gia Phong 2019-12-27 22:29:40 +07:00
parent 08e1581906
commit 81c0c42301
4 changed files with 9 additions and 7 deletions

4
.gitignore vendored
View file

@ -1,7 +1,7 @@
vim/.cache/vim/viminfo
vim/.vim/__pycache__
vim/.vim/plugged
meta/.fonts/.uuid
meta/.config/gtk-3.0/bookmarks
awesome/.config/awesome/vicious/
nix/.config/gtk-3.0/settings.ini
nix/.gtkrc-2.0
.uuid

View file

@ -32,7 +32,7 @@
'(erc-nick "cnx")
'(package-selected-packages
(quote
(sane-term glsl-mode perl6-mode fireplace lua-mode markdown-mode
(sane-term glsl-mode nix-mode perl6-mode fireplace lua-mode markdown-mode
smart-tabs-mode auctex wordnut magit geiser slime pdf-tools)))
'(safe-local-variable-values (quote ((Syntax . Common-Lisp))))
'(scroll-bar-mode nil)

View file

@ -48,9 +48,9 @@
# $ nix search wget
environment.systemPackages = with pkgs; with kdeApplications; [
ack htop mc stow
alacritty emacs git
alacritty emacs git nix-prefetch-github
aria2 curl firefox ipfs thunderbird w3m wget
ark ktorrent okular spectacle
ark ktorrent libreoffice okular spectacle
audaciousQt5 ffmpeg-full mpv
blender frei0r glfw gmic-qt-krita kdenlive krita simplescreenrecorder
dict dictdDBs.eng2fra dictdDBs.fra2eng dictdDBs.wiktionary dictdDBs.wordnet
@ -58,7 +58,9 @@
gcc gdb man-pages posix_man_pages
go guile jdk12 lua octave sbcl
lmodern texlive.combined.scheme-full
python38Packages.pip python38 python38Packages.setuptools python38Packages.wheel python38Packages.twine
(python38.withPackages(ps: with ps;
[ pip setuptools twine virtualenvwrapper wheel
numpy moderngl pillow pygame ]))
];
# Some programs need SUID wrappers, can be configured further or are

View file

@ -32,11 +32,11 @@ command Q q
command W w
call plug#begin('~/.vim/plugged')
Plug 'https://github.com/vim/killersheep.git'
Plug 'https://github.com/sheerun/vim-polyglot.git'
Plug 'https://github.com/srcery-colors/srcery-vim.git'
Plug 'https://github.com/tpope/vim-abolish.git'
Plug 'https://github.com/alx741/vinfo.git'
Plug 'https://github.com/drmikehenry/vim-fontsize.git'
Plug 'https://github.com/lervag/vimtex.git', {'for': 'tex'}
Plug 'https://github.com/kovisoft/slimv.git', {'for': 'lisp'}
Plug 'https://github.com/artur-shaik/vim-javacomplete2.git', {'for': 'java'}