diff options
author | talha <talha@talhaamir.xyz> | 2024-04-23 00:43:02 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2024-04-23 00:43:02 +0500 |
commit | f4431f6d75baa71aa23318ea50bea3848f946ab1 (patch) | |
tree | b68fdc45b210d7c8adf2db39a2e7d499ccc1ba6f /lua/talha/set.lua | |
parent | 721ef14cf3906992d8615456493de439ada8e1b8 (diff) |
Migrated to lazy.nvim, added neomake, a few remaps
Diffstat (limited to 'lua/talha/set.lua')
-rw-r--r-- | lua/talha/set.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/talha/set.lua b/lua/talha/set.lua index 68b6ee6..c2c578d 100644 --- a/lua/talha/set.lua +++ b/lua/talha/set.lua @@ -32,3 +32,7 @@ op.colorcolumn = '120' -- required to allow mm (mark-move) command to move file vim.g.netrw_keepdir = 1 + +-- building c/cpp files +vim.opt.makeprg = GetPlatformBuildCommand() + |