diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-12-27 22:29:40 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-12-27 22:29:40 +0700 |
commit | 81c0c423013c29b962bc8607b1dd2ebdfaae71af (patch) | |
tree | 00e790e574fba902f9d7dcadb4baac3db170e83a | |
parent | 08e15819061cc952b24b88efcbb266401f2534bd (diff) | |
download | dotfiles-81c0c423013c29b962bc8607b1dd2ebdfaae71af.tar.gz |
Update 2019-09-27
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | emacs/.emacs.d/init.el | 2 | ||||
-rw-r--r-- | nix/configuration.nix (renamed from configuration.nix) | 8 | ||||
-rwxr-xr-x | vim/.vim/vimrc | 2 |
4 files changed, 9 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore index 39c54dc..dc40f43 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index eadceea..9c5adfe 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -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) diff --git a/configuration.nix b/nix/configuration.nix index 84043a6..5f7e1de 100644 --- a/configuration.nix +++ b/nix/configuration.nix @@ -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 diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index ec9194d..9046c06 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -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'} |