diff options
-rw-r--r-- | Dockerfile | 6 | ||||
-rw-r--r-- | rc.conf | 1 |
2 files changed, 5 insertions, 2 deletions
@@ -24,7 +24,6 @@ RUN apt-get update && apt-get install -y \ ctags \ shellcheck \ netcat \ - ranger \ ack-grep \ sqlite3 \ unzip \ @@ -56,6 +55,11 @@ RUN wget https://releases.hashicorp.com/terraform/0.11.8/terraform_0.11.8_linux_ unzip terraform_0.11.8_linux_amd64.zip && \ mv terraform /usr/bin +# Ubuntu ranger old and doesn't support 'wrap_scroll'. +RUN git clone https://github.com/thornycrackers/ranger.git /tmp/ranger && \ + cd /tmp/ranger && \ + make install + ######################################## # Python ######################################## @@ -1,4 +1,3 @@ -set wrap_scroll true set vcs_aware true set preview_files true set line_numbers relative |