Skip to content

Commit b06944d

Browse files
committed
some changes from the surface laptop
1 parent 7aa37a5 commit b06944d

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.bat.conf

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
# terminal emulators (like tmux, by default):
1111
#--italic-text=always
1212

13-
# Uncomment the following line to disable automatic paging:
14-
#--paging=never
15-
1613
# Uncomment the following line if you are using less version >= 551 and want to
1714
# enable mouse scrolling support in `bat` when running inside tmux. This might
1815
# disable text selection, unless you press shift.
@@ -24,5 +21,7 @@
2421
#--map-syntax "*.ino:C++"
2522
#--map-syntax ".ignore:Git Ignore"
2623
--map-syntax='*.conf:Apache Conf'
24+
--paging=never
2725
--style=plain
2826
#--number
27+

.readable.vimrc

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ call plug#begin('~/.vim/plugged')
4848
Plug 'scrooloose/nerdcommenter'
4949
Plug 'ntpeters/vim-better-whitespace'
5050
Plug 'sheerun/vim-polyglot'
51+
Plug 'lambdalisue/suda.vim'
5152

5253
"colorschemes
5354
Plug 'rktjmp/lush.nvim', {'branch': 'main'}

setup.sh

+9-5
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@ sudo apt install -y tmux mosh tree rsync ncdu htop zoxide tig p7zip-full #fasd
2020
# for programming
2121
sudo apt install -y postgresql postgresql-client
2222

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
2530

2631
# clang, gcc
2732
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 -
4348

4449
sudo apt install -y nodejs
4550
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

0 commit comments

Comments
 (0)