diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:18:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:18:22 +0000 |
commit | 89908d4dab99f0e52d8c520f9705c40beedcfb54 (patch) | |
tree | 997455d04e6844f2b5c4b2814c0b34316ed1faa4 /debian | |
parent | Enabling noerrorbells. (diff) | |
download | vim-89908d4dab99f0e52d8c520f9705c40beedcfb54.tar.xz vim-89908d4dab99f0e52d8c520f9705c40beedcfb54.zip |
Enabling powerline.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/local/vimrc.d/powerline.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/local/vimrc.d/powerline.vim b/debian/local/vimrc.d/powerline.vim new file mode 100644 index 0000000..eaf6035 --- /dev/null +++ b/debian/local/vimrc.d/powerline.vim @@ -0,0 +1,11 @@ +" /etc/vim/vimrc.d/powerline.vim + +if filereadable("/usr/lib/python3/dist-packages/powerline/vim.py") && has('python3') + python3 from powerline.vim import setup as powerline_setup + python3 powerline_setup() + python3 del powerline_setup + + set laststatus=2 + set noshowmode + set showtabline=2 +endif |