diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 21:34:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 21:34:01 +0000 |
commit | 491bff09d7ccb9144924ab37870d1c965aa117a6 (patch) | |
tree | c3895ba83572b9c0317b8ce61cdfc0323d4b7fe1 | |
parent | Enabling noerrorbells. (diff) | |
download | vim-491bff09d7ccb9144924ab37870d1c965aa117a6.tar.xz vim-491bff09d7ccb9144924ab37870d1c965aa117a6.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 |