File tree 3 files changed +12
-8
lines changed
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 10
10
# terminal emulators (like tmux, by default):
11
11
#--italic-text=always
12
12
13
- # Uncomment the following line to disable automatic paging:
14
- #--paging=never
15
-
16
13
# Uncomment the following line if you are using less version >= 551 and want to
17
14
# enable mouse scrolling support in `bat` when running inside tmux. This might
18
15
# disable text selection, unless you press shift.
24
21
#--map-syntax "*.ino:C++"
25
22
#--map-syntax ".ignore:Git Ignore"
26
23
--map-syntax='*.conf:Apache Conf'
24
+ --paging=never
27
25
--style=plain
28
26
#--number
27
+
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ call plug#begin('~/.vim/plugged')
48
48
Plug ' scrooloose/nerdcommenter'
49
49
Plug ' ntpeters/vim-better-whitespace'
50
50
Plug ' sheerun/vim-polyglot'
51
+ Plug ' lambdalisue/suda.vim'
51
52
52
53
" colorschemes
53
54
Plug ' rktjmp/lush.nvim' , {' branch' : ' main' }
Original file line number Diff line number Diff line change @@ -20,8 +20,13 @@ sudo apt install -y tmux mosh tree rsync ncdu htop zoxide tig p7zip-full #fasd
20
20
# for programming
21
21
sudo apt install -y postgresql postgresql-client
22
22
23
- # TODO install python 3.10
24
- sudo pip3 install ipython requests flask pylint black
23
+ # python 3.10 or maybe use pyenv?
24
+ sudo add-apt-repository -y ppa:deadsnakes/ppa
25
+ sudo apt update && sudo apt install python3.10
26
+
27
+ # python packages
28
+ sudo pip3 install pandas numpy scipy
29
+ sudo pip3 install ipython bpython requests flask pylint black pep8 rope pyright
25
30
26
31
# clang, gcc
27
32
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
@@ -43,6 +48,5 @@ curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
43
48
44
49
sudo apt install -y nodejs
45
50
sudo npm install -g http-server serve nodemon
46
- sudo npm install -g typescript ts-node js-beautify eslint rimraf
47
- sudo npm install -g npm-check tldr # optional
48
-
51
+ sudo npm install -g typescript ts-node js-beautify tslint
52
+ # sudo npm update -g # update global packages
You can’t perform that action at this time.
0 commit comments