summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/configurable.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-03-03 21:14:00 +0100
committerMichael Raskin <7c6f434c@mail.ru>2017-03-03 21:20:19 +0100
commit8eccd34f10a936e46164b30c76df4fef9340fef3 (patch)
tree7a2ee718722bea61e22471e2b3b28fb5f12a86a6 /pkgs/applications/editors/vim/configurable.nix
parent477014fd6a8c88efe314524d465b15c4379c7921 (diff)
downloadnixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.tar
nixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.tar.gz
nixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.tar.bz2
nixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.tar.lz
nixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.tar.xz
nixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.tar.zst
nixlib-8eccd34f10a936e46164b30c76df4fef9340fef3.zip
vim_configurable: enable ximSupport by default
Diffstat (limited to 'pkgs/applications/editors/vim/configurable.nix')
-rw-r--r--pkgs/applications/editors/vim/configurable.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index 9c0becc47295..3f588fdde585 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -139,7 +139,7 @@ composableDerivation {
     multibyteSupport = config.vim.multibyte or false;
     cscopeSupport    = config.vim.cscope or true;
     netbeansSupport  = config.netbeans or true; # eg envim is using it
-    ximSupport       = config.vim.xim or false;
+    ximSupport       = config.vim.xim or true; # less than 15KB, needed for deadkeys
 
     # by default, compile with darwin support if we're compiling on darwin, but
     # allow this to be disabled by setting config.vim.darwin to false