mirror of
https://github.com/lloeki/vimfiles.git
synced 2025-12-06 05:24:39 +01:00
Compare commits
4 commits
82581bb4cb
...
e7a40241e4
| Author | SHA1 | Date | |
|---|---|---|---|
| e7a40241e4 | |||
| 97e35d0dfe | |||
| 4cd93a0a19 | |||
| 7b15337084 |
4 changed files with 18 additions and 4 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
|
@ -1,5 +1,7 @@
|
|||
*.swp
|
||||
tmp/
|
||||
.netrwhist
|
||||
plugged/*
|
||||
autoload/plug.vim.old
|
||||
/tmp/
|
||||
/.netrwhist
|
||||
/plugged/*
|
||||
/autoload/plug.vim.old
|
||||
/.envrc
|
||||
/localvim
|
||||
|
|
|
|||
1
.local.vim
Normal file
1
.local.vim
Normal file
|
|
@ -0,0 +1 @@
|
|||
" local settings when editing this repo
|
||||
10
shell.nix
Normal file
10
shell.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ pkgs ? import(fetchTarball("https://github.com/NixOS/nixpkgs/archive/d51f8579f03a76718d643dd184ae964e6f0dd751.tar.gz")) {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
vim
|
||||
neovim
|
||||
vim-language-server
|
||||
vim-vint
|
||||
];
|
||||
}
|
||||
1
vimrc
1
vimrc
|
|
@ -269,6 +269,7 @@ augroup vimrc
|
|||
autocmd FileType eruby setl softtabstop=2 shiftwidth=2
|
||||
autocmd FileType coffee setl softtabstop=4 shiftwidth=4
|
||||
autocmd BufRead,BufNewFile Guardfile setf ruby
|
||||
autocmd BufRead,BufNewFile Steepfile setf ruby
|
||||
autocmd BufRead,BufNewFile Vagrantfile setf ruby
|
||||
autocmd BufRead,BufNewFile Steepfile setf ruby
|
||||
autocmd BufRead,BufNewFile *.skim setf slim
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue