summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcore/vim.sh13
-rw-r--r--others/.vm.sh2.swpbin0 -> 16384 bytes
-rwxr-xr-xsetup.sh2
3 files changed, 5 insertions, 10 deletions
diff --git a/core/vim.sh b/core/vim.sh
index 54e21e6..3950b65 100755
--- a/core/vim.sh
+++ b/core/vim.sh
@@ -4,8 +4,6 @@ mkdir -p /usr/share/vim/vimfiles/colors/
4 4
5cd "$(dirname "${BASH_SOURCE[0]}")" || exit 5cd "$(dirname "${BASH_SOURCE[0]}")" || exit
6 6
7cp files/* /usr/share/vim/vimfiles/colors/
8
9cat << EOF >> /etc/vimrc 7cat << EOF >> /etc/vimrc
10augroup netcat_clipboard 8augroup netcat_clipboard
11 au! 9 au!
@@ -20,16 +18,13 @@ set breakindent
20set breakindentopt=shift:1 18set breakindentopt=shift:1
21 19
22syntax on 20syntax on
23set autoindent
24set number
25set mouse=a 21set mouse=a
26set expandtab 22set expandtab
27set shiftwidth=2 23set shiftwidth=2
28set softtabstop=2 24set softtabstop=2
29set tabstop=2 25set tabstop=2
30 26set noautoindent
31set autoindent 27set nosmartindent
32set smartindent
33filetype plugin indent on 28filetype plugin indent on
34 29
35set laststatus=2 " permanent status bar 30set laststatus=2 " permanent status bar
@@ -39,8 +34,8 @@ if (has("termguicolors"))
39 set termguicolors 34 set termguicolors
40endif 35endif
41 36
42source /usr/share/vim/vimfiles/colors/night-owl.vim 37colorscheme murphy
43colorscheme night-owl 38"colorscheme zellner
44EOF 39EOF
45 40
46 41
diff --git a/others/.vm.sh2.swp b/others/.vm.sh2.swp
new file mode 100644
index 0000000..e075ed6
--- /dev/null
+++ b/others/.vm.sh2.swp
Binary files differ
diff --git a/setup.sh b/setup.sh
index 0f6a86e..ccad66f 100755
--- a/setup.sh
+++ b/setup.sh
@@ -11,7 +11,7 @@ EOF2
11source /etc/bashrc 11source /etc/bashrc
12 12
13bash ./core/ssh.sh || { echo "Failed to configure SSH"; exit 1; } 13bash ./core/ssh.sh || { echo "Failed to configure SSH"; exit 1; }
14#bash ./core/vim.sh || { echo "Failed to configure Vim"; exit 1; } 14bash ./core/vim.sh || { echo "Failed to configure Vim"; exit 1; }
15bash ./core/install-packages.sh || { echo "Failed to install packages"; exit 1; } 15bash ./core/install-packages.sh || { echo "Failed to install packages"; exit 1; }
16 16
17sudo timedatectl set-timezone Asia/Singapore 17sudo timedatectl set-timezone Asia/Singapore