diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-11-28 00:00:38 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-11-28 00:00:38 +0900 |
| commit | 5f6941aa610fcc82c34782ed140b83b4497fd048 (patch) | |
| tree | 0b36056c36db563c82694b055fd23f9ece0fd127 /.config/nvim/after/ftplugin/php.vim | |
| parent | b73d4c0bff913467628ecddd2b5ac9eb66f55118 (diff) | |
| download | dotfiles-5f6941aa610fcc82c34782ed140b83b4497fd048.tar.gz dotfiles-5f6941aa610fcc82c34782ed140b83b4497fd048.tar.zst dotfiles-5f6941aa610fcc82c34782ed140b83b4497fd048.zip | |
neovim: rewrite after/ftplugin/* in Lua
Diffstat (limited to '.config/nvim/after/ftplugin/php.vim')
| -rw-r--r-- | .config/nvim/after/ftplugin/php.vim | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.config/nvim/after/ftplugin/php.vim b/.config/nvim/after/ftplugin/php.vim deleted file mode 100644 index ec7fd3e..0000000 --- a/.config/nvim/after/ftplugin/php.vim +++ /dev/null @@ -1,30 +0,0 @@ -scriptencoding utf-8 - - -if exists('b:did_ftplugin_php_after') - finish -endif - - - -FtpluginSetLocal expandtab -FtpluginSetLocal shiftwidth=2 -FtpluginSetLocal softtabstop=2 - - - -" If a buffer is empty, insert `<?php` tag and 2 blank lines, and position the -" cursor at the end of the buffer (line 3, column 0). -" -" Example: -" <?php -" -" [cursor] -if line('$') ==# 1 && empty(getline(1)) - call setline(1, ['<?php', '', '']) - call cursor(3, 0) -endif - - - -let b:did_ftplugin_php_after = 1 |
