about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-04-27 10:52:10 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-04-27 10:52:10 +0700
commit1008040f059bc8d45d6f0b2dd6a1c51cd829d0e7 (patch)
tree68ffe5993a36cef1a75f351ff845851601e358fa
parenta7318de79dda2662239c52965a6dd712fd19467b (diff)
downloaddotfiles-1008040f059bc8d45d6f0b2dd6a1c51cd829d0e7.tar.gz
Start a new internship with Clojure
-rw-r--r--awesome/.config/awesome/rc.lua2
-rw-r--r--dev/.ssh/config7
-rwxr-xr-xvim/.vim/vimrc5
3 files changed, 9 insertions, 5 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 7f768e2..043ead4 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -481,8 +481,6 @@ local globalkeys = awful.util.table.join(
             {description = "open Transmission", group = "launcher"}),
   awful.key({modkey, "Shift"}, "t", spawner"thunderbird",
             {description = "open Thunderbird", group = "launcher"}),
-  awful.key({modkey}, "m", spawner"nheko",
-            {description = "open nheko", group = "launcher"}),
   awful.key({modkey, "Shift"}, "g", spawner"gimp",
             {description = "open GIMP", group = "launcher"}),
   awful.key({modkey}, "r", spawner(ranger),
diff --git a/dev/.ssh/config b/dev/.ssh/config
index 052d1ad..82c7a4a 100644
--- a/dev/.ssh/config
+++ b/dev/.ssh/config
@@ -6,3 +6,10 @@ Host acanban
 	Port 22222
 	RequestTTY yes
 	RemoteCommand ssh acanban
+
+Host ict9
+	HostName ictlab.usth.edu.vn
+	User phongng
+	Port 22222
+	RequestTTY yes
+	RemoteCommand ssh ict9
diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc
index dbec673..f473ef3 100755
--- a/vim/.vim/vimrc
+++ b/vim/.vim/vimrc
@@ -20,6 +20,7 @@ augroup vimrc
   autocmd BufNewFile,BufRead *.vert,*.geom,*.frag setlocal filetype=glsl
   autocmd BufNewFile,BufRead *.info setlocal filetype=json
   autocmd BufNewFile,BufRead *.PAS setlocal filetype=pascal
+  autocmd BufNewFile,BufRead *.ms setlocal filetype=groff
   autocmd BufNewFile,BufRead *.m setlocal filetype=octave
   autocmd FileType asm,c,h,go,glsl,sshconfig,php
         \ setlocal cindent cinoptions=(0 noexpandtab shiftwidth=8 tabstop=8
@@ -49,12 +50,10 @@ Plug 'https://github.com/vim/killersheep'
 Plug 'https://github.com/sheerun/vim-polyglot'
 Plug 'https://github.com/francoiscabrol/ranger.vim'
 Plug 'https://github.com/srcery-colors/srcery-vim'
-Plug 'https://github.com/knsh14/vim-github-link'
 Plug 'https://github.com/lervag/vimtex', {'for': 'tex'}
 Plug 'https://github.com/kovisoft/slimv', {'for': 'lisp'}
+Plug 'https://github.com/tpope/vim-fireplace', {'for': 'clojure'}
 Plug 'https://github.com/anntzer/vim-cython', {'for': 'cython'}
-Plug 'https://github.com/racer-rust/vim-racer', {'for': 'rust'}
-Plug 'https://github.com/rhysd/rust-doc.vim', {'for': 'rust'}
 Plug 'https://git.sr.ht/~sircmpwn/hare.vim', {'for': 'hare'}
 call plug#end()